Design Patterns - Singleton
/*
Author: Jiangong SUN
*/
Singleton is a design pattern used to limit one class to have just only 1 instance.
Here is an example about how to implement singleton pattern.
补充:软件开发 , C# ,
/*
Author: Jiangong SUN
*/
Singleton is a design pattern used to limit one class to have just only 1 instance.
Here is an example about how to implement singleton pattern.
补充:软件开发 , C# ,