ErrorUtils
方便调试错误

public class ErrorUtils {
static boolean flag = true;
public static void print(String msg){
if (flag){
System.out.println(msg);
}else {
//
}
}
}
方便调试错误

public class ErrorUtils {
static boolean flag = true;
public static void print(String msg){
if (flag){
System.out.println(msg);
}else {
//
}
}
}