/// 构造函数;
 protected MonoSingleton()
 {
     if (null == _singleton)
     {
         LogHelper.PrintGreen($"[MonoSingleton]{typeof(T).ToString()} singleton instance created.");
     }
 }