In C#, do you need to call the base constructor? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:05:18Z http://stackoverflow.com/feeds/question/18097 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/18097/in-c-do-you-need-to-call-the-base-constructor 8 In C#, do you need to call the base constructor? Guy 2008-08-20T14:26:32Z 2008-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#18100 0 Answer by Lars Mæhlum for In C#, do you need to call the base constructor? Lars Mæhlum 2008-08-20T14:28:05Z 2008-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#18102 3 Answer by John Downey for In C#, do you need to call the base constructor? John Downey 2008-08-20T14:28:50Z 2008-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#18109 12 Answer by Ian Nelson for In C#, do you need to call the base constructor? Ian Nelson 2008-08-20T14:32:49Z 2008-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#18115 2 Answer by Tom Welch for In C#, do you need to call the base constructor? Tom Welch 2008-08-20T14:38:08Z 2008-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 -2 Answer by Joel Meador for In C#, do you need to call the base constructor? Joel Meador 2008-08-20T14:39:12Z 2008-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#18170 5 Answer by Rob Cooper for In C#, do you need to call the base constructor? Rob Cooper 2008-08-20T15:03:55Z 2008-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#18185 2 Answer by Keith for In C#, do you need to call the base constructor? Keith 2008-08-20T15:11:19Z 2008-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 -2 Answer by jl23x for In C#, do you need to call the base constructor? jl23x 2008-08-20T15:14:37Z 2008-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>