码迷,mamicode.com
首页 > 其他好文 > 详细

单例工具代码

时间:2018-06-03 17:30:48      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:TE   IV   eric   leo   单例   代码   脚本   ret   private   

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

//T为脚本名,可以直接把已经写好的脚本变为单例来用

public class SingleObject<T>where T:class,new() {
    private static T instance;
    public static T Instance
    {
         get
         {
             if(instance==null)
             {
                 instance = new T();
             }
             return instance;
         }
     }
}

 

单例工具代码

标签:TE   IV   eric   leo   单例   代码   脚本   ret   private   

原文地址:https://www.cnblogs.com/fangshiyuanzhucheng/p/9129526.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!