단일 모드 - 지연 초기화
기본 단일 모드 (굶주린 사람 모드):
final class Singleton{
private static Singleton s=new Singleton(47);
private int i;
private Singleton(int x){i=x;}
public static Singleton getReference(){
return s;
}
public int getValue(){return i;}
public void setValue(int x){i=x;}
}
( ):
final class StaticSingleton{
private static StaticSingleton s;
private int i;
private StaticSingleton(int x){i=x;}
public static StaticSingleton getReference(){
if(s == null){
s=new StaticSingleton(47);
}
return s;
}
public int getValue(){return i;}
public void setValue(int x){i=x;}
}
:
final class InnerSingleton{
private static InnerSingleton s;
private int i;
private InnerSingleton(int x){i=x;}
private static class SingletonHolder{
static InnerSingleton instance =new InnerSingleton(47);
}
public static InnerSingleton getReference(){
return SingletonHolder.instance;
}
public int getValue(){return i;}
public void setValue(int x){i=x;}
}
:
:
public interface EmployeeManagement {
static String name="";
public void setName(String name);
}
:
final class Employee implements EmployeeManagement{
static String name;
private static Map map = new HashMap();
static{
Employee single = new Employee();
map.put(single.getClass().getName(), single);
}
public void setName(String name){
this.name=name;
}
protected Employee(){}
protected Employee(String name){this.setName(name);}
public static Employee getInstance(String name) {
if(name == null) {
name = Employee.class.getName();
System.out.println("name == null"+"--->name="+name);
}
if(map.get(name) == null) {
if(map.get(name) == null) {
try {
map.put(name, (Employee) Class.forName(name).newInstance());
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
}
return map.get(name);
}
public void getInfo(){
System.out.println(name+" is here .");
}
}
:
public class RegistryService {
public static void main(String[] args) {
Employee em=Employee.getInstance("singleton.Employee");
em.setName("SuYU");
em.getInfo();
}
}
:
https://share.weiyun.com/5kLvDQS
https://share.weiyun.com/5LRwSxS
전재 대상:https://www.cnblogs.com/ssMellon/p/6414810.html
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.