• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#typeof()实例详解

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
typeof(C# 参考)

用于获取类型的 System.Type 对象。typeof 表达式采用以下形式:

System.Type type = typeof(int);
 备注

若要获取表达式的运行时类型,可以使用 .NET Framework 方法 GetType,如下所示:

1 int i = 0;
2 System.Type type = i.GetType();

typeof 运算符也能用于公开的泛型类型。具有不止一个类型参数的类型的规范中必须有适当数量的逗号。不能重载 typeof 运算符。

 1 示例 
 2 // cs_operator_typeof.cs
 3 using System;
 4 using System.Reflection;
 5 public class SampleClass
 6 {
 7   public int sampleMember;
 8   public void SampleMethod() {}
 9   static void Main()
10   {
11     Type t = typeof(SampleClass);
12     // Alternatively, you could use
13     // SampleClass obj = new SampleClass();
14     // Type t = obj.GetType();
15     Console.WriteLine("Methods:");
16     MethodInfo[] methodInfo = t.GetMethods();
17     foreach (MethodInfo mInfo in methodInfo)
18     Console.WriteLine(mInfo.ToString());
19     Console.WriteLine("Members:");
20     MemberInfo[] memberInfo = t.GetMembers();
21     foreach (MemberInfo mInfo in memberInfo)
22     Console.WriteLine(mInfo.ToString());
23   }
24 }
25 输出
26 Methods:
27 Void SampleMethod()
28 System.Type GetType()
29 System.String ToString()
30 Boolean Equals(System.Object)
31 Int32 GetHashCode()
32 Members:
33 Void SampleMethod()
34 System.Type GetType()
35 System.String ToString()
36 Boolean Equals(System.Object)
37 Int32 GetHashCode()
38 Void .ctor()
39 Int32 sampleMember
40 此示例使用 GetType 方法确定用来包含数值计算的结果的类型。这取决于结果数字的存储要求。
41  
42 // cs_operator_typeof2.cs
43 using System;
44 class GetTypeTest
45 {
46   static void Main()
47   {
48     int radius = 3;
49     Console.WriteLine("Area = {0}", radius * radius * Math.PI);
50     Console.WriteLine("The type is {0}",
51     (radius * radius * Math.PI).GetType()
52     );
53   }
54 }
55 输出
56 Area = 28.2743338823081
57 The type is System.Double

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C++中创建对象的时候加括号和不加括号的区别发布时间:2022-07-13
下一篇:
从位图到布隆过滤器,C#实现发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap