分类
标签
.NET 9008 adb android apt asp.net ASP.NET Core audio bug C c++ C++ chrome cmd csharp CSharp css css3 debian debug dotnet dotnet Framework dpkg GDI&GDI+ gdi&gdi+ golang graphics html html5 http java javascript json kali linux linux mci microsoft minimap MSBuild mysql OpenCV PInvoke powershell python QQ rust shell speex sql tutorial ubuntu ui unity vb.net visual studio Visual Studio web Web win32 winapi windows winform WinForm wpf WPF xaml xfce 列表 刷机 前端 加密 反射 反编译 可视化 图像处理 多线程 字符串 安卓 实例 局域网 幻影坦克 库 开发语言 异步 微信 手册 手机 接口 摘要 救砖 数字签名 数字证书 数字音频 数据库 桌面程序 游戏 游戏引擎 源码 爬虫 玩游戏 电脑硬件 笔记 算法 类库 线性代数 编程语言 网络 脚本语言 计算机图形学 计算机基础 设计模式 语音编解码 运维 进制 面向对象编程 音频 音频编码解码
237 字
1 分钟
[Unity] 单例设计模式, 可供继承的单例组件模板类
一个可供继承的单例组件模板类:
public class SingletonComponent<TComponent> : MonoBehavior
where TComponent : SingletonComponent<TComponent>
{
static TComponent _instance;
private static TComponent GetOrFindOrCreateComponent()
{
// 双检索
if (_instance == null)
{
// 尝试在场景中查找已存在的组件
_instance = FindObjectOfType<TComponent>();
// 如果找不到, 则创建一个空对象, 并且挂载上组件
if (_instance == null)
{
GameObject gameObject = new GameObject();
_instance = gameObject.AddComponent<TComponent>();
}
}
return _instance;
}
public static TComponent Instance => GetOrFindOrCreateComponent();
}
因为 Unity 是单线程的, 所以在这里没有必要使用双检索
使用方式
例如你要创建一个全局的单例管理类, 可以这样使用:
public class GameManager : SingletonComponent<GameManager>
{
// your code here
}
注意事项
尽量避免让 SingletonComponent
帮你创建组件, 因为它只是单纯的将组件创建, 并挂载到空对象上, 而不会进行任何其他行为. 如果你的组件需要进行某些初始化, 那么它可能不会正常.
[Unity] 单例设计模式, 可供继承的单例组件模板类
https://slimenull.com/posts/20230828202236/