单例模式没有什么好讲的,我们 举个例子
#region 单例定义 ////// 类单例 /// private static WindowController instance = null; #endregion
internal static WindowController GetInstance() { if (instance == null) { instance = new WindowController(); } return instance; }
本文共 402 字,大约阅读时间需要 1 分钟。
单例模式没有什么好讲的,我们 举个例子
#region 单例定义 ////// 类单例 /// private static WindowController instance = null; #endregion
internal static WindowController GetInstance() { if (instance == null) { instance = new WindowController(); } return instance; }
转载于:https://www.cnblogs.com/xietianjiao/p/8118862.html