public class Solution {
//该函数用来将大写字母转换为小写字母
public static String toLowerCase(String str) {
if (str == null){
//字符串为空时
return null;
}
public class Solution {
//该函数用来将大写字母转换为小写字母
public static String toLowerCase(String str) {
if (str == null){
//字符串为空时
return null;
}