typeof操作符用于获得系统原型对象的类型
例如:
程序清单7-9:
using System; class Test { static void Main(){ Console.WriteLine(typeof(int)); Console.WriteLine(typeof(System.Int32)); Console.WriteLine(typeof(string)); Console.WriteLine(typeof(double[])); }; }
产生如下输出。
Int32
Int32
String
Double[]
这表明int和system.int32是同一类型。
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索c#
, typeof
, 类型
, console
, 操作符
WriteLine
c站、c语言、cf、ch、c罗,以便于您获取更多的相关知识。
时间: 2024-12-31 16:19:02