c# typeof 与 GetType 作用与区别

官方解释:

Used to obtain the "System.Type" object for a type. A 'typeof‘ expression takes the following for:

System.Type type = typeof(x);

可以理解为: 可用 'typeof' 来获取对象 ‘x' 的类型, 得到的 Type 类型对象 t 有一系列方法可以调用,  x 必须是类名

 

Object.GetType:

Get the Type of the current instance.

可以理解为: 针对类变量,实体化对象(类的实例)来使用, 使用范围比 typeof 要广, 可以对所有对象使用。

之所以所有对象都可以用, 因为 System.Object 是所有类默认的基类。

 

具体可见以下链接:

https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/typeof

 

posted on 2017-09-02 21:32  张居斜  阅读(507)  评论(0编辑  收藏  举报

导航