3. 单例模式唯一性问题—构造函数

1. 构造函数带来的唯一性问题指什么?

  1. 对于不继承MonoBehaviour的单例模式基类
    我们要避免在外部 new 单例模式类对象

例如 (完整单例模式定义在上一节)

csharp 复制代码
public class Main : MonoBehaviour
{

    void Start()
    {
        // 破坏单例模式的唯一性,可以自己new对应的单例模式类对象,这样不安全
        TestMgr t = new TestMgr();
        BaseManager<TestMgr> baseManager = new BaseManager<TestMgr>();

        
    }

}
  1. 对于继承MonoBehaviour的单例模式基类
    由于继承MonoBehaviour的脚本不能通过new创建,因此不用过多考虑

2. 解决构造函数带来的安全问题

解决BaseManager baseManager = new BaseManager();问题

  1. 父类变成抽象类

解决 TestMgr t = new TestMgr();问题

  1. 规定继承单例模式基类的类必须显示实现私有无参构造函数
  2. 但是会出现单例模式基类不能通过new问题创建实例

  3. 解决办法:在基类中通过反射来调用私有构造函数实例化对象
csharp 复制代码
public abstract class BaseManager<T> where T : class/*,new()*/
{
    public static T instance;

    // 属性的方式
    public static T Instance
    {
        get
        {
            if(instance == null)
            {
                //instance = new T();

                // 利用反射得到无参私有的构造函数,来用于对象的实例化
                Type type = typeof(T);
                //  BindingFlags.Instance | BindingFlags.NonPublic, //表示成员私有方法
                //    null,                                         //表示没有绑定对象
                //    Type.EmptyTypes,                              //表示没有参数
                //    null);                                        //表示没有参数修饰符
                ConstructorInfo info =  type.GetConstructor(BindingFlags.Instance | BindingFlags.NonPublic, null,Type.EmptyTypes,null);

                if(info != null)
                {
                    instance = info.Invoke(null) as T;
                }
                else
                {
                    Debug.LogError("没有得到对应的无参构造函数");
                }
                
            }
            return instance;
        }
    }

    
}
  1. 这样就实现了外部不能new单例模式的对象,同时,单例模式的基类通过反射获取到构造函数创建实例
相关推荐
LuckyLay几秒前
Golang学习笔记_22——Reader示例
笔记·学习·golang·reader·io.reader
C++小厨神2 分钟前
Rust语言的循环实现
开发语言·后端·golang
感谢地心引力12 分钟前
【MATLAB】绘制投资组合的有效前沿
开发语言·matlab·金融·股票·有效前沿
xianwu54315 分钟前
反向代理模块。
linux·开发语言·网络·c++·git
bug终结者102417 分钟前
WPF连接USB相机,拍照,视频 示例
数码相机·c#·wpf
tpen34 分钟前
C# WinForm 检查目标主机的端口是否可连接
c#
前端啊龙42 分钟前
eslint.config.js和.eslintrc.js有什么区别
开发语言·前端·javascript
BinaryBardC42 分钟前
R语言的软件工程
开发语言·后端·golang
916字节43 分钟前
docker学习笔记-初步接触
笔记·学习·docker
灬德布罗意的猫灬44 分钟前
Wireshark 学习笔记1
笔记·学习·wireshark