设计模式——单例模式
1 internal class SingletonOne 2 { 3 private static SingletonOne _singleton; 4 private SingletonOne() 5 { 6 } 7 8 public static SingletonOne Instance 9 { 10 get 11 { 12 if (_singleton == null) 13 { 14 Interlocked.CompareExchange(ref _singleton, new SingletonOne(), null); 15 } 16 17 return _singleton; 18 } 19 } 20 }
每个人的前方都有一条路,幸福,不是第一步,也是通往未来的每一步,每条路上都有一段旅程正在发生,出发,不仅为了到达,是为遇见更美的风景,没有不可征服的挑战,曲折无非是过程不再平淡,没有不可到达的地方,让一起经过的成为梦中经历的,没有无法突破的界限,换一种方式又能从容前行,向前走吧,也许每一个人前方的路各不相同。但无论道路的长短,过程的起伏,都无法阻挡向前的决心,因为...始终相信进无止境是我们共同的信仰。...,进无止境!