//<summary>
 //我尝试使用单态模式,正好用了下原来设计模式里的内容,因为一次浏览器启动我只想用一次
 //</summary>
 public static testClassifier getSingleObject()
 {
     if (Singleton == null)
     {
         Singleton = new testClassifier();
     }
     return(Singleton);
 }
 //<summary>
 //我尝试使用单态模式,正好用了下原来设计模式里的内容,因为一次浏览器启动我只想用一次
 //</summary>
 public static testClassifier getSingleObject()
 {
     if (Singleton == null)
         Singleton = new testClassifier();
     return Singleton;
 }