C# 单例模式
使用:直接类继承
例 ItemData :MonoSingleton
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
///
///
//Where T: 类 指的是约束T只能是该类类型或者该类的派生类
public class 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成神之路。
共有 0 条评论