public static BPServerConfigServer GetInstance()
 {
     //如实例不存在,则New一个新实例,否则返回已有实例
     if (instance == null)
     {
         //在同一时刻加了锁的那部分程序只有一个线程可以进入,
         lock (_object)
         {
             //如实例不存在,则New一个新实例,否则返回已有实例
             if (instance == null)
             {
                 instance = new BPServerConfigServer();
             }
         }
     }
     return(instance);
 }