天天看點

包裝和解包

int變量可以用ToString方法隐式的轉換為一個System.Object對象,這個過程叫包裝;一個System.Object也可以轉換為一個值變量,這個過程叫解包

1 using System;

2  using System.Collections.Generic;

3 using System.Linq;

4 using System.Text;

5

6 namespace ConsoleApplication2

7 {

8 class Program

9 {

10 static void Main(string[] args)

11 {

12 int myInt1 = 10;

13

14 //包裝

15 Console.WriteLine("myInt1.ToString() = " + myInt1.ToString());

16 Console.WriteLine("myInt1.GetType() = " + myInt1.GetType());

17

18 int myInt2 = 10;

19 object myObject = myInt2;

20 Console.WriteLine("myInt2 =" + myInt2);

21 Console.WriteLine("myObject =" + Int2);

22

23 //解包

24

25 int myInt3 = (int)myObject;

26 Console.WriteLine("myInt3 = " + myInt3);

27 }

28 }

29 }

上一篇: 索引器
下一篇: 運算符重載