int
C# 中有什么?它是关键字,还是从system.ValueTypes派生的类?如果它是关键字,那么以下行如何编译
int i = new int(); // If int is not a class then how does it have a default constructor
Console.WriteLine(i.ToString()); // If int is not a class then how does it have member functions
如果int
是一个类,那么为什么不需要总是用 初始化它new
?以下行如何编译?
int i = 8;