class SingLeton
{
private static SingLeton instance;
private SingLeton(){
}
public static SingLeton getSingLeton(){
if(instance==null){
instance= new SingLeton();
}
return instance;
}
}
public class TestSingLeton
{
public static void main(String[] args)
{
SingLeton s1=SingLeton.getSingLeton();
SingLeton s2=SingLeton.getSingLeton();
System.out.println(s1==s2);
System.out.println(s1.equals(s2));
}
}
java的单例实现
最新推荐文章于 2025-11-28 18:05:33 发布
本文介绍了一种使用Java实现单例模式的方法。通过私有构造函数和静态方法确保类只有一个实例,并提供一个全局访问点。
452

被折叠的 条评论
为什么被折叠?



