Singleton Pattern

原創  Singleton Pattern 收藏

This is one of the most commonly used patterns.

Make the class of the single instance object responsible for creation, initialization, access, and enforcement. Declare the instance as a private static data member. Provide a public static accessor function that encapsulates all initialization code, and provides access to the instance.

The client calls the accessor function whenever a reference to the single instance is required.

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章