싱글톤 타사림 데세니
Singleton bir Classtan direk bir instance oluşturulamaz Classtaki static bir method çağrılır ve bu method eğer Classın bir instance ı oluşturulmadıysa eni bir instance oluşturarak bunuı geri döndürür ve bundan sonra
싱글톤클래스.자바
public class SingletonClass {
private static SingletonClass instance;
public int number = 0;
// Dışarıdan yeni bir instance oluşturulamaması için Constructorı private yaptık
private SingletonClass() {}
public static SingletonClass getInstance() {
if (instance == null) {
instance = new SingletonClass();
}
return instance;
}
}
앱.자바
public class App {
public static void main(String[] args) {
SingletonClass instance1 = SingletonClass.getInstance();
SingletonClass instance2 = SingletonClass.getInstance();
System.out.println(instance1.number);
instance2.number = 10;
System.out.println(instance1.number);
}
}
산출
0
10
인스턴스 1 및 인스턴스 2 및 인스턴스 2 추가 2017년 11월 20일
우마림 파이달리 올무슈투르. Okuduğunuz için teşekkürler.
Reference
이 문제에 관하여(싱글톤 타사림 데세니), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/artuncolak/singleton-tasarim-deseni-3e0j텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)