싱글톤 패턴? 디자인 패턴 책을 읽다보면 빠지지 않는 패턴이다. In software engineering, the singleton pattern is a software design pattern that restricts the instantiation of a class to one "single" instance. This is useful when exactly one object is needed to coordinate actions across the system. 출처 : 위키피디아 singleton pattern 해석 : 소프트웨어 엔지니어링에서, 싱글톤 패턴은 클래스의 생성을 오직 한가지 인스턴스로만 제한하는 소프트웨어 디자인 패턴이다. 이는 시스템 전체적으로 행동을 제어하는데에 한..