디자인 모델 - 23 가지 디자인 모델 의 단일 모델
Ensure a class has only one instance, and provide a global point of access to it.
하나의 클래스 가 하나의 인 스 턴 스 만 있 는 지 확인 하고 자체 적 으로 예화 하여 전체 시스템 에 이 인 스 턴 스 를 제공 합 니 다.
iOS 응용 예시
NSNotificationCenter
UIApplication
NSUserDefaults
Rules
Objective-C
+ (instancetype)sharedInstance{
// GCD
static SingleTonClass *sharedInstance = nil; //unique-ness
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{ //thread-safe
sharedInstance = [[SingleTonClass alloc] init];
});
return sharedInstance;
}
PS: Objective - C 에는 개인 적 인 방법 이 없습니다. 외부 호출
[[SingleTonClass alloc] init];
을 할 수 있 습 니 다. 협의 로 만 보증 할 수 있 습 니 다.Swift
class SingleTonClass {
// swift , ,
static let sharedInstance = SingleTonClass() //thread-safe
private init() {} //unique-ness
}
PS: swift 에서 전역 변수 static 변 수 는 dispatchonce 원자 성 확보 (A. K. A thread - safe)
Python(Singleton, metaclass, _metaclass_)
class Singleton(type):
_instances = {}
def __call__(cls, *args, **kwargs):
if cls not in cls._instances:
cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs)
return cls._instances[cls]
class Logger(object):
__metaclass__ = Singleton
Node. js (노드 단일 스 레 드, 모듈, 싱글 톤)
var singleton = function singleton(){}
singleton.instance = null;
singleton.getInstance = function(){
if(this.instance === null){
this.instance = new singleton();
}
return this.instance;
}
module.exports = singleton.getInstance();
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
디자인 모델 의 공장 모델, 단일 모델자바 는 23 가지 디자인 모델 (프로 그래 밍 사상/프로 그래 밍 방식) 이 있 습 니 다. 공장 모드 하나의 공장 류 를 만들어 같은 인 터 페 이 스 를 실현 한 일부 종 류 를 인 스 턴 스 로 만 드 는 것...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.