-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlambaTest.cs
124 lines (103 loc) · 2.63 KB
/
lambaTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
using UnityEngine;
using System;
using System.Collections.Generic;
// 对于匿名函数的gc alloc 测试
public static class Utils
{
public static void Forecah<TKey, TValue>(this Dictionary<TKey, TValue> dict, System.Action<TKey, TValue> EnumeratorFunc)
{
if (dict == null || EnumeratorFunc == null)
throw new System.ArgumentNullException();
var i = dict.GetEnumerator();
while (i.MoveNext())
{
EnumeratorFunc(i.Current.Key, i.Current.Value);
}
}
}
public class lambaTest : MonoBehaviour
{
Dictionary<int, int> table = new Dictionary<int, int>();
public int count;
public Action<int, int> pCall;
void Start()
{
pCall = CallVariable;
table.Add(1, 1);
table.Add(2, 2);
table.Add(3, 3);
table.Add(4, 4);
table.Add(5, 5);
table.Add(6, 6);
table.Add(7, 7);
table.Add(8, 8);
table.Add(9, 9);
count = 0;
}
void Update()
{
Profiler.BeginSample("AnonymousWithoutParam");
AnonymousWithoutVariable();
Profiler.EndSample();
Profiler.BeginSample("FunctionWithoutVariable");
FunctionWithoutVariable();
Profiler.EndSample();
Profiler.BeginSample("AnonymousWithoutParam");
AnonymousVariable();
Profiler.EndSample();
Profiler.BeginSample("FunctionWithoutVariable");
FunctionVariable();
Profiler.EndSample();
Profiler.BeginSample("CallInitVariable");
aaaa();
Profiler.EndSample();
}
// no gc
void AnonymousWithoutVariable()
{
table.Forecah((k, v) =>
{
int c = 0;
c = k + v;
});
}
// has 104B
void FunctionWithoutVariable()
{
table.Forecah(AddWithoutVariable);
}
void AddWithoutVariable(int k, int v)
{
int c = 0;
c = k + v;
}
//////////////////////////////////////////////////
/// 使用外部变量
/////////////////////////////////////////
void AnonymousVariable()
{
table.Forecah((k, v) =>
{
count = k + v;
});
}
void FunctionVariable()
{
table.Forecah(AddtVariable);
}
void AddtVariable(int k, int v)
{
count = k + v;
}
/// <summary>
/// 以下是解决方法
/// </summary>
void aaaa()
{
table.Forecah(pCall);
}
void CallVariable(int k, int v)
{
count = k + v;
}
}