1. 单例
public static Check30procedure cp30 = null;
public static Check30procedure newInstance(){
if(cp30==null){
cp30 = new Check30procedure();
}
return cp30;
}
1. 单例
public static Check30procedure cp30 = null;
public static Check30procedure newInstance(){
if(cp30==null){
cp30 = new Check30procedure();
}
return cp30;
}