In C#, do you need to call the base constructor? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T06:05:18Zhttp://stackoverflow.com/feeds/question/18097http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/18097/in-c-do-you-need-to-call-the-base-constructor8In C#, do you need to call the base constructor?Guy2008-08-20T14:26:32Z2008-08-20T15:14:37Z
<p>In C#, if I have an inherited class with a default constructor, do I have to explicitly call the base class' constructor? (or will it implicitly be called?</p>
<pre><code>class BaseClass
{
public BaseClass()
{
// ... some code
}
}
class MyClass : BaseClass
{
public MyClass() // Do I need to put ": base()" here or is it implied?
{
// ... some code
}
}
</code></pre>
http://stackoverflow.com/questions/18097/in-c-do-you-need-to-call-the-base-constructor/18100#181000Answer by Lars Mæhlum for In C#, do you need to call the base constructor?Lars Mæhlum2008-08-20T14:28:05Z2008-08-20T14:28:05Z<p>AFAIK, you only need to call the base constructor if you need to pass down any values to it.</p>
http://stackoverflow.com/questions/18097/in-c-do-you-need-to-call-the-base-constructor/18102#181023Answer by John Downey for In C#, do you need to call the base constructor?John Downey2008-08-20T14:28:50Z2008-08-20T14:28:50Z<p>It is implied.</p>
http://stackoverflow.com/questions/18097/in-c-do-you-need-to-call-the-base-constructor/18109#1810912Answer by Ian Nelson for In C#, do you need to call the base constructor?Ian Nelson2008-08-20T14:32:49Z2008-08-20T14:32:49Z<p>You do not need to explicitly call the base constructor, it will be implicitly called.</p>
<p>Extend your example a little and create a Console Application and you can verify this behaviour for yourself:</p>
<pre><code>using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
MyClass foo = new MyClass();
Console.ReadLine();
}
}
class BaseClass
{
public BaseClass()
{
Console.WriteLine("BaseClass constructor called.");
}
}
class MyClass : BaseClass
{
public MyClass()
{
Console.WriteLine("MyClass constructor called.");
}
}
}
</code></pre>
http://stackoverflow.com/questions/18097/in-c-do-you-need-to-call-the-base-constructor/18115#181152Answer by Tom Welch for In C#, do you need to call the base constructor?Tom Welch2008-08-20T14:38:08Z2008-08-20T14:38:08Z<p>A derived class is built upon the base class. If you think about it, the base object has to be instantiated in memory before the derived class can be appended to it. So the base object will be created on the way to creating the derived object. So no, you do not call the constructor.</p>
http://stackoverflow.com/questions/18097/in-c-do-you-need-to-call-the-base-constructor/18118#18118-2Answer by Joel Meador for In C#, do you need to call the base constructor?Joel Meador2008-08-20T14:39:12Z2008-08-20T14:39:12Z<p>Agree with Ian.</p>
<pre><code>namespace ConsoleTester
{
public class TestProgram
{
public static void Main(string[] args)
{
BaseClass b = new BaseClass();
MyClass m = new MyClass();
}
}
class BaseClass
{
public BaseClass()
{
Console.WriteLine("base");
}
}
class MyClass : BaseClass
{
public MyClass()
{
Console.WriteLine("myclass");
}
}
}
</code></pre>
<p>The result on the console will be:</p>
<pre><code>base
base
myclass
</code></pre>
http://stackoverflow.com/questions/18097/in-c-do-you-need-to-call-the-base-constructor/18170#181705Answer by Rob Cooper for In C#, do you need to call the base constructor?Rob Cooper2008-08-20T15:03:55Z2008-08-20T15:03:55Z<p>It is implied, provided it is parameterless. This is because you <strong>need to implement constructors that take values</strong>, see the code below for an example:</p>
<pre><code>public class SuperClassEmptyCtor
{
public SuperClassEmptyCtor()
{
// Default Ctor
}
}
public class SubClassA : SuperClassEmptyCtor
{
// No Ctor's this is fine since we have
// a default (empty ctor in the base)
}
public class SuperClassCtor
{
public SuperClassCtor(string value)
{
// Default Ctor
}
}
public class SubClassB : SuperClassCtor
{
// This fails because we need to satisfy
// the ctor for the base class.
}
public class SubClassC : SuperClassCtor
{
public SubClassC(string value) : base(value)
{
// make it easy and pipe the params
// straight to the base!
}
}
</code></pre>
http://stackoverflow.com/questions/18097/in-c-do-you-need-to-call-the-base-constructor/18185#181852Answer by Keith for In C#, do you need to call the base constructor?Keith2008-08-20T15:11:19Z2008-08-20T15:11:19Z<p>It's implied for base parameterless constructors, but it is needed for defaults in the current class:</p>
<pre><code>public MyClass()
// no ref to base needed
{
// initialise stuff
}
public MyClass( int param1, string param2 )
:this() //if not explicit this will be :base()
{
}
</code></pre>
http://stackoverflow.com/questions/18097/in-c-do-you-need-to-call-the-base-constructor/18196#18196-2Answer by jl23x for In C#, do you need to call the base constructor?jl23x2008-08-20T15:14:37Z2008-08-20T15:14:37Z<p>You don’t need call the base constructor explicitly it will be implicitly called, but sometimes you need pass parameters to the constructor in that case you can do something like:</p>
<pre><code>using System;
namespace StackOverflow.Examples
{
class Program
{
static void Main(string[] args)
{
NewClass foo = new NewClass("parameter1","parameter2");
Console.WriteLine(foo.GetUpperParameter());
Console.ReadKey();
}
}
interface IClass
{
string GetUpperParameter();
}
class BaseClass : IClass
{
private string parameter;
public BaseClass (string someParameter)
{
this.parameter = someParameter;
}
public string GetUpperParameter()
{
return this.parameter.ToUpper();
}
}
class NewClass : IClass
{
private BaseClass internalClass;
private string newParameter;
public NewClass (string someParameter, string newParameter)
{
this.internalClass = new BaseClass(someParameter);
this.newParameter = newParameter;
}
public string GetUpperParameter()
{
return this.internalClass.GetUpperParameter() + this.newParameter.ToUpper();
}
}
}
</code></pre>
<p>Note: If someone knows a better solution please tells me.</p>