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

C# String

时间:2019-01-08 00:13:45      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:lin   eva   字符   操作   执行   ati   test   自动   加载   

1.IL代码优化字符串+操作

例1:

1)string s = "hello" + "world"; //IL代码会自动优化为一条指令 ldstr "helloworld" 加载到evaluation stack

2)string s1=“hello”; string s2="world"; string s=s1+s2; //不会优化 会分别加载s1 、 s2 但是IL代码是利用String.Contact()拼接  Contact方法内部先调用FastAllocateString开辟空间 然后执行Buffer.Memcpy

例2:

 

C# String

标签:lin   eva   字符   操作   执行   ati   test   自动   加载   

原文地址:https://www.cnblogs.com/fmys/p/10236552.html

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