我想知道.NET Framework
类库(例如“ Console”类)中包含的预定义类/类的默认构造函数是什么。谢谢!
Object Constructor是答案吗?
using System;
class AccountTest
{
static void Main()
{
Console.WriteLine($"Hello World!");
Console.ReadLine();
}
}
答案 0 :(得分:0)
“ If you don't provide a constructor for your class, C# creates one by default that instantiates the object and sets member variables to the default values”。对于大多数类,甚至在.NET基本类库中的类,都适用。
但是对于Console
类,它被标记为static
,并且由于“ a static class cannot be instantiated”它不提供构造函数。