public DerivedClass(string x) : base(x)
{
x="blah";
}
will this code call the base constructor with a value of x as "blah"?
|
|
will this code call the base constructor with a value of x as "blah"?
|
||
|
|
|
|
The base call is always done first, but you can make it call a static method. For example:
Now if you call
then the base constructor will be called with "Hello Foo!". Note that you cannot call instance methods on the instance being constructed, as it's not "ready" yet. |
||||||||||||||||
|
|
|
No,
|
||
|
|
|
|
No, the base constructor is always called before the current constructor. |
||
|
|
|
|
No, it will call it with the value passed into the derived class constructor. Base class constructor is always called (explicitly or implicitly) prior to executing the body of the derived class constructor. |
||
|
|
|
|
No, It won't. The base constructor will be passed the string in x before the execution of DerivedClass constructor. This may work:
I'm not sure about that but you should be able to call any method / getter when calling the base constructor, like that:
|
||||||||||||||
|