C# provides, by default a parameterless constructor. If I write a constructor that takes a string as a parameter, but want to keep the parameterless constructor. How many constructors should I write?(C#提供默认构造函数(不带参数),如果我写了一个带有一个string类型参数的构造函数,但是又想保留不带参数的构造函数,那么我需要写多少个构造函数)
C# provides, by default a parameterless constructor. If I write a constructor that takes a string as a parameter, but want to keep the parameterless constructor. How many constructors should I write?
(C#提供默认构造函数(不带参数),如果我写了一个带有一个string类型参数的构造函数,但是又想保留不带参数的构造函数,那么我需要写多少个构造函数)
相关考题:
Which two statements are true regarding the creation of a default constructor?() A、 The default constructor initializes method variables.B、 The compiler always creates a default constructor for every class.C、 The default constructor invokes the no-parameter constructor of the superclass.D、 The default constructor initializes the instance variables declared in the class.E、 When a class has only constructors with parameters, the compiler does not create a default constructor.
在Java中,下面对于构造函数的描述错误的是()。A、类不一定要显式定义构造函数B、构造函数的返回类型是voidC、如果构造函数不带任何参数,那么构造函数的名称和类名可以不同D、一个类可以定义多个构造函数
以下对默认构造说法正确的有()。A、默认构造的返回类型是voidB、默认构造带有void类型的一个参数C、默认构造无返回类型D、默认构造无参数E、当不写任何构造时,编译系统会自动产生一个默认构造
下面对C#中类的构造函数描述正确的是()A、与方法不同的是,构造函数只有void这一种返回类型B、构造函数如同方法一样,需要人为调用才能执行其功能C、构造函数一般被声明成private型D、在类中可以重载构造函数,C#会根据参数匹配原则来选择执行合适的构造函数
多选题在Java中,下面对于构造函数的描述错误的是()。A类不一定要显式定义构造函数B构造函数的返回类型是voidC如果构造函数不带任何参数,那么构造函数的名称和类名可以不同D一个类可以定义多个构造函数
多选题C#中,构造函数是类中的一种特殊方法,下列关于构造函数的特点的说法,正确的是()。A一个类中,只能有一个构造函数B构造函数的名称与类名称一样,并且没有返回类型C构造函数在对像销毁时自动执行D如果类没有定义默认的构造函数,运行库将自动提供默认构造函数
单选题下面对C#中类的构造函数描述正确的是()A与方法不同的是,构造函数只有void这一种返回类型B构造函数如同方法一样,需要人为调用才能执行其功能C构造函数一般被声明成private型D在类中可以重载构造函数,C#会根据参数匹配原则来选择执行合适的构造函数
多选题Which two statements are true regarding the creation of a default constructor?()AThe default constructor initializes method variables.BThe compiler always creates a default constructor for every class.CThe default constructor invokes the no-parameter constructor of the superclass.DThe default constructor initializes the instance variables declared in the class.EWhen a class has only constructors with parameters, the compiler does not create a default constructor.
多选题以下对默认构造说法正确的有()。A默认构造的返回类型是voidB默认构造带有void类型的一个参数C默认构造无返回类型D默认构造无参数E当不写任何构造时,编译系统会自动产生一个默认构造