c#singleton是什么
2 回答
繁华开满天机
TA贡献1816条经验 获得超4个赞
单例,这个可以自己定义
public class Singleton {
private static Singleton instance = null;
private Singleton(){
//do something
}
public static Singleton getInstance(){
if(instance==null){
instance = new Singleton();
}
return instance;
}
即保证整个程序中这个类只有一个实例
- 2 回答
- 0 关注
- 682 浏览
添加回答
举报
0/150
提交
取消