싱글톤 데코레이터
4833 단어 tutorialtypescriptbeginners
데코레이터는 기본적으로 래퍼 함수이므로 이를 사용하여 가짜 익명 클래스를 반환하고 해당 생성자를 사용할 수 있습니다.
데코레이트된 클래스의 인스턴스를 클로저 변수에 가두어 나중에 누군가 호출하려고 할 때 재사용할 수 있습니다.
클래스 생성자 다시:
function Singleton<T extends new (...args: any[]) => any>(ctr: T): T {
let instance: T;
return class {
constructor(...args: any[]) {
if (instance) {
console.error('You cannot instantiate a singleton twice!');
return instance;
}
instance = new ctr(...args);
return instance;
}
} as T
}
이제 이를 사용하여 모든 클래스를 장식하여 싱글톤으로 만들 수 있습니다.
@Singleton
class User {
constructor(private name: string) { }
public sayName(): void {
console.log(`My name is ${this.name}`);
}
}
let user = new User("Bob");
let secondUser = new User("not Bob");
user.sayName(); // "Bob"
secondUser.sayName(); // still "Bob"
Playground
흥미롭죠?
Reference
이 문제에 관하여(싱글톤 데코레이터), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/bwca/singleton-decorator-526h텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)