码迷,mamicode.com
首页 > Windows程序 > 详细

c# GC 新典型

时间:2019-02-18 12:53:02      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:div   oid   var   ring   pre   get   mono   ==   span   

public class testGC : MonoBehaviour
{
    class XDict<K, V>
    {
        public void TryGetValue(K key, V value)
        {
            if(key == null) //产生 GC-ALLOC,因为实参为int,而 null是引用类型,发生了装箱操作
            {
            }
        }
    }

    XDict<int, string> mDict = new XDict<int, string>();

    void Start()
    {
    }

    void Update()
    {
        var key = 10;
        if (key != null) //不会产生GC-ALLOC
        {
            var value = 20;
        }

        mDict.TryGetValue(10, "hello");
    }
}

 

c# GC 新典型

标签:div   oid   var   ring   pre   get   mono   ==   span   

原文地址:https://www.cnblogs.com/timeObjserver/p/10394862.html

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