当前位置: 代码迷 >> ASP.NET >> aaa,该怎么处理
  详细解决方案

aaa,该怎么处理

热度:9181   发布时间:2013-02-26 00:00:00.0
aaa
public   sealed   class   SampleSingleton1
{
private   int   m_Counter   =   0;
  private   SampleSingleton1()
{
Console.WriteLine( " "初始化SampleSingleton1。 " ");
}
public   static   readonly   SampleSingleton1   Singleton   =   new   SampleSingleton1();
public   void   Counter()
{
m_Counter   ++;
}
}  
  以上代码实现了设计模式中的哪种模式?
   1.   原型
   2.   抽象工厂
   3.   单键
   4.   生成器


------解决方案--------------------------------------------------------
看名字Singleton,像是单件
但代码乱七八糟,什么都没有实现~
  相关解决方案