dotnet C# 调用委托的 GetInvocationList 的对象分配
本文也叫跟着 stephen toub 大佬学性能优化系列,这是我从 stephen toub 大佬给 wpf 框架做性能优化学到的知识,在热路径下,也就是频繁调用的模块,如果调用了委托的 getinvocationlist 方法,那么将视委托的大小,每次创建不同大小的新数组对象,而在频繁调用的模块,将会创建大量的对象
如以下代码的一个委托,当然对于事件来说也是如此
action action = foo; for (int i = 0; i < 10; i++) { action += foo; } static void foo() { }
如果调用了 action 的 getinvocationlist 方法,那么在每次调用都会申请一些内存,如使用以下代码进行测试
for (int i = 0; i < 100; i++) { var beforeallocatedbytesforcurrentthread = gc.getallocatedbytesforcurrentthread(); var invocationlist = action.getinvocationlist(); var afterallocatedbytesforcurrentthread = gc.getallocatedbytesforcurrentthread(); console.writeline(afterallocatedbytesforcurrentthread - beforeallocatedbytesforcurrentthread); }
上面代码的 getallocatedbytesforcurrentthread 是一个放在 gc 层面的方法,可以用来获取当前线程分配过的内存大小,这是一个用来辅助调试的方法。详细请看 dotnet 使用 gc.getallocatedbytesforcurrentthread 获取当前线程分配过的内存大小
可以看到运行时的控制台输出如下
312 112 112 112 112 112 112 112 112 112 112 112 // 不水了
这是因为在底层的实现,调用 getinvocationlist 方法的代码如下
public override sealed delegate[] getinvocationlist() { delegate[] delegatearray; if (!(this._invocationlist is object[] invocationlist)) { delegatearray = new delegate[1]{ (delegate) this }; } else { delegatearray = new delegate[(int) this._invocationcount]; for (int index = 0; index < delegatearray.length; ++index) delegatearray[index] = (delegate) invocationlist[index]; } return delegatearray; }
可以看到每次都需要重新申请数组,然后给定数组里面的元素。如果在调用频繁的模块里面,不断调用 getinvocationlist 方法,将会有一定的性能损耗。如在 wpf 的移动鼠标等逻辑里面
一个优化的方法是,如果指定的委托或事件的加等次数比调用 getinvocationlist 的次数少,如 wpf 的 prenotifyinput 等事件,此时可以通过在加等的时候缓存起来,这样后续的调用就不需要重新分配内存
以上优化的细节请看 avoid calling getinvocationlist on hot paths by stephentoub · pull request #4736 · dotnet/wpf
可以通过如下方式获取本文的源代码,先创建一个空文件夹,接着使用命令行 cd 命令进入此空文件夹,在命令行里面输入以下代码,即可获取到本文的代码
git init git remote add origin https://gitee.com/lindexi/lindexi_gd.git git pull origin 6ed312e74e286d581e3d609ed555447474259ae4
以上使用的是 gitee 的源,如果 gitee 不能访问,请替换为 github 的源
git remote remove origin git remote add origin https://github.com/lindexi/lindexi_gd.git
获取代码之后,进入 fairhojafalljeeleefuyi 文件夹
下一篇: 基于C#的多边形冲突检测