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

匿名函数访问外部变量有gc

时间:2018-10-09 19:58:19      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:public   外部   inf   obj   log   cal   vat   class   ack   

 

直接上测试代码:

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

public class TestStructGC : MonoBehaviour
{
    public struct StructDef
    {
        public System.Action act;

        public StructDef(System.Action callback)
        {
            act = callback;
        }
    }

    public int memberValue;

    private void Update()
    {
        // 使用匿名函数,不访问外部函数,0 gc
        {
            UnityEngine.Profiling.Profiler.BeginSample("*** Test1 ***");
            StructDef obj = new StructDef(null);
            UnityEngine.Profiling.Profiler.EndSample();
        }

        // 使用匿名函数,访问临时变量,112B gc
        {
            int tmp = 1;
            UnityEngine.Profiling.Profiler.BeginSample("*** Test2 ***");
            StructDef obj = new StructDef(() => { var v = tmp; });
            UnityEngine.Profiling.Profiler.EndSample();
        }

        // 使用匿名函数,访问外部变量,112B gc
        {
            UnityEngine.Profiling.Profiler.BeginSample("*** Test3 ***");
            StructDef obj = new StructDef(() =>
            {
                Debug.LogError(memberValue);
            });
            UnityEngine.Profiling.Profiler.EndSample();
        }

        // 不使用匿名函数,0 gc
        {
            UnityEngine.Profiling.Profiler.BeginSample("*** Test4 ***");
            StructDef obj = new StructDef(actCallback);
            UnityEngine.Profiling.Profiler.EndSample();
        }
    }

    #region optimize for test4
    private System.Action actCallback;

    public TestStructGC()
    {
        actCallback = LocalCallback;
    }

    private void LocalCallback()
    {
        Debug.LogError(memberValue);
    }
    #endregion
}

技术分享图片

参考:https://blog.uwa4d.com/archives/Anonymous_heapmemory.html

 

匿名函数访问外部变量有gc

标签:public   外部   inf   obj   log   cal   vat   class   ack   

原文地址:https://www.cnblogs.com/sifenkesi/p/9762183.html

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