關於C#的裝箱和拆箱的簡單測試例子

 int i = 0;         //裝箱         object obj = i;         Debug.Log(i);         Debug.Log(obj);         i = 10;         Debug.Log(i);         Debug.Log(obj);         //拆箱         object obj2 = 5;      
相關文章
相關標籤/搜索