C#3.0 为我们带来什么(5) —— 匿名类型
var employee= new{Age =25,Name = "james"?}
無須顯示聲明一個類,而且在初始化器里面可以獲取上下文的變量——閉包
這就是C#3.0里提供的匿名類型。
并且可以對聲明的類型進行這樣的訪問
string name = employee.name;
來看看IL的實現。
.method public hidebysig instance void? dd() cil managed
{
? // 代碼大小?????? 22 (0x16)
? .maxstack? 3
? .locals init ([0] class '<>f__AnonymousType0`2'<int32,string> employee,
?????????? [1] string name)
? IL_0000:? nop
? IL_0001:? ldc.i4.s?? 25
? IL_0003:? ldstr????? "james"
? IL_0008:? newobj???? instance void class '<>f__AnonymousType0`2'<int32,string>::.ctor(!0,
??????????????????????????????????????????????????????????????????????????????????????? !1)
? IL_000d:? stloc.0
? IL_000e:? ldloc.0
? IL_000f:? callvirt?? instance !1 class '<>f__AnonymousType0`2'<int32,string>::get_Name()
? IL_0014:? stloc.1
? IL_0015:? ret
} // end of method testvar::dd
看到代碼會想'<>f__AnonymousType0`2'從何而來呢?
來看il視圖就知道了。
雖然匿名類型非常方便,但是我們無法通過代碼來訪問到'<>f__AnonymousType0`2',而且var不能定義全局變量與參數類型,所以導致了我們創建的匿名類型實例只能應用在函數內部。從而限制了匿名類型的使用。
轉載于:https://www.cnblogs.com/tianyamoon/archive/2008/01/06/1028013.html
總結
以上是生活随笔為你收集整理的C#3.0 为我们带来什么(5) —— 匿名类型的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 黄金——家家都应藏有的投资品(转载自新浪
- 下一篇: 【ZZ】IPv4与IPv6