IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 大数据 -> 框架学习:单例属性 -> 正文阅读

[大数据]框架学习:单例属性

#region 单例
    public interface ISingleton
    {

    }
    public abstract class Singleton<T> where T : class, ISingleton
    {
        private static T mInstance;
        public static T Instance
        {
            get
            {
                if (mInstance == null)
                {
                    //MyExtentsion.GetMonoOrPrivateClass支持实例化Mono的挂载类以及私有的普通类
                    mInstance = MyExtension.GetMonoOrPrivateClass<T>();
                }
                return mInstance;
            }
        }
    } 
    #endregion
public static T GetMonoOrPrivateClass<T>() where T : class
        {
            T obj = default(T);
            var type = typeof(T);
            var monoType = typeof(MonoBehaviour);
            //判断是否为Mono挂载类
            if (monoType.IsAssignableFrom(type))
            {
                obj = GetMonoClass<T>();
            }
            else
            {
                obj = GetPriClass<T>();
            }
            return obj;
        }

以下为GetMonoClass分支:

//Mono类的创建,通过属性[后面用到]
[AttributeUsage(AttributeTargets.Class)]
        public class PathInHierary : Attribute
        {
            private string mPath;
            public PathInHierary(string path)
            {
                mPath = path;
            }
            public string Path { get { return mPath; } }
        }
        //例:
        [MyExtension.PathInHierary("GameFramework/Examples/Test11")]
    public class Test1
    {
        
    }
 private static T GetMonoClass<T>() where T : class
        {
            GameObject game = FindGameobject<T>();
            if(game == null)
            {
                game = new GameObject(typeof(T).Name);
            }
            return game.AddComponent(typeof(T)) as T;
        }
        
private static GameObject FindGameobject<T>()
        {
            string path = string.Empty;
            var type = typeof(T);
            //获取前面设定的属性,true表示子类也会被获取
            var cus = type.GetCustomAttributes(true);
            foreach (var c in cus)
            {
                var monoPath = c as PathInHierary;
                if(monoPath != null)
                {
                    path = monoPath.Path;
                }
            }
            //根据设定的路径去获取游戏对象
            GameObject obj = FindGameobject(path);

            return obj;
        }
        
         private static GameObject FindGameobject(string path, bool isNew = true)
        {
            string[] subPaths = path.Split('/');
            GameObject obj = FindGameobject(null,subPaths,0,isNew);
            return obj;
        }

        private static GameObject FindGameobject(GameObject root,string[] subPaths, int index, bool isNew)
        {
            GameObject tmep = null;
            if(root == null)
            {
                tmep = GameObject.Find(subPaths[index]);
            }
            else
            {
                var trans = root.transform.Find(subPaths[index]);
                if(trans != null)
                {
                    tmep = trans.gameObject;
                }
            }
            if (tmep == null)
            {
                if (isNew)
                {
                    tmep = new GameObject(subPaths[index]);
                    if (root != null)
                    {
                        tmep.transform.SetParent(root.transform);
                    }
                }
                else
                {
                    throw new Exception("没有该游戏对象");
                }
            }
            root = tmep;
            return ++index < subPaths.Length ? FindGameobject(root, subPaths, index, isNew) : root;
        }

以下为私有的普通类

private static T GetPriClass<T>() where T : class
        {
            var type = typeof(T);
            var cons = type.GetConstructors(System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
            var employCon = Array.Find(cons, c => c.GetParameters().Length == 0);
            return employCon.Invoke(null) as T;
        }

使用方法:

public class Test2 : MonoBehaviour
    {
        // Start is called before the first frame update
        void Start()
        {
            Test11 test11 = Test11.Instance;
            Test12 test12 = Test12.Instance;
            test12.Print();
        }

        // Update is called once per frame
        void Update()
        {

        }
    }
    public class Test12 : ISingleton
    {
        public static Test12 Instance => Singleton<Test12>.Instance;
        private Test12()
        {

        }
        public void Print()
        {
            Debug.Log("私有类的输出");
        }
    }
    [MyExtension.PathInHierary("GameFramework/Examples/Test11")]
    public class Test11 : MonoBehaviour, ISingleton
    {
        public static Test11 Instance => Singleton<Test11>.Instance;

        private void Start()
        {
            Debug.Log("成功被创建");
        }
    }
  大数据 最新文章
实现Kafka至少消费一次
亚马逊云科技:还在苦于ETL?Zero ETL的时代
初探MapReduce
【SpringBoot框架篇】32.基于注解+redis实现
Elasticsearch:如何减少 Elasticsearch 集
Go redis操作
Redis面试题
专题五 Redis高并发场景
基于GBase8s和Calcite的多数据源查询
Redis——底层数据结构原理
上一篇文章      下一篇文章      查看所有文章
加:2022-02-01 20:41:02  更:2022-02-01 20:43:08 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 13:36:02-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码