v

[ActionScript 3.0] Singleton , 싱글톤 페턴

package {
    public class Singleton {
        private static var instance:Singleton;
        private static const checker:Object = {};
 
        public function Singleton(initObj:Object) {
            if(initObj != checker) {
                throw new Error("Private constructor!");
            }
        }
 
        public static function getInstance():Singleton {
            if(instance == null) {
                instance = new Singleton(checker);
            }
            return instance;
        }
    }
}
|
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
14년 전 조회 2,472
14년 전 조회 884
14년 전 조회 2,834
14년 전 조회 1,236
14년 전 조회 1,575
14년 전 조회 4,896
14년 전 조회 1,652
14년 전 조회 816
14년 전 조회 628
14년 전 조회 1,763
14년 전 조회 850
14년 전 조회 1,223
14년 전 조회 735
14년 전 조회 726
14년 전 조회 815
14년 전 조회 4,592
14년 전 조회 1,493
14년 전 조회 841
14년 전 조회 2,097
14년 전 조회 1,570
14년 전 조회 1,400
14년 전 조회 2,826
14년 전 조회 1,933
14년 전 조회 920
14년 전 조회 1,020
🐛 버그신고