C# 单例模式

使用:直接类继承 
例 ItemData  :MonoSingleton

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

///

/// 单例模板类
///

//Where T: 类 指的是约束T只能是该类类型或者该类的派生类
public class MonoSingleton : MonoBehaviour where T : MonoSingleton
{
//public static T Instance { get; private set; }

//private void Awake()
//{
// Instance = this as T;
//}

//按需加载
private static T instance;
public static T Ins

C# 单例模式最先出现在Python成神之路

版权声明:
作者:cc
链接:https://www.techfm.club/p/11369.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>