vote up 4 vote down star
1

Can I call a overloaded constructor from another constructor of the same class in C#?

flag
what language?... – Mitch Wheat Jun 12 at 6:38
@Malay: What language are you talking about? If you are talking about java/c#, why should this be a question? The documentation should help you before you post a question. Sorry, if I am wrong in my understanding. – shahkalpesh Jun 12 at 6:40
C# .. I can call second constructor like this foo(args) base() but is it possible to do like this foo() { //do something foo(args) //do something } – Malay Jun 12 at 6:46
1  
@shahkalpesh, as the originators of this forum have often said, we do not discourage users from asking basic questions. So please refrain from RTFM like comments. @Malay, as @shahkalpesh said, it is certainly possible in Java/C#. Please be more specific about the language. – Rahul Jun 12 at 6:47
Dupe - stackoverflow.com/questions/829870/… – Gishu Jun 12 at 7:58

4 Answers

vote up 3 vote down

No, You can't do that, the only place you can call the constructor from another constructor in C# is immediately after ":" after the constructor. for example

class foo
{
    public foo(){}
    public foo(string s ) { }
    public foo (string s1, string s2) : this(s1) {....}

}
link|flag
thanks mfawzymkh – Malay Jun 12 at 7:04
how about a vote up:):) – mfawzymkh Jun 12 at 7:13
3  
Do not ask for vote ups. That can cause opposite reaction. – Arnis L. Jun 12 at 7:40
Oh! thanks for letting me know, I meant it with a sense of fun, but I got your point. Thanks – mfawzymkh Jun 13 at 8:32
vote up 2 vote down

If you mean if you can do ctor chaining in C#, the answer is yes. The question has already been asked.

However it seems from the comments, it seems what you really intend to ask is 'Can I call an overloaded constructor from within another constructor with pre/post processing?'
Although C# doesn't have the syntax to do this, you could do this with a common initialization function (like you would do in C++ which doesn't support ctor chaining)

class A
{
  //ctor chaining
  public A():this(0)
  {  Console.WriteLine("default ctor"); }

  public A(int i)
  {  Init(i); }

  // what you want
  public A(string s)
  {  
    Console.WriteLine("string ctor overload" );
     Console.WriteLine("pre-processing" );
     Init(Int32.Parse(s));
     Console.WriteLine("post-processing" );
  }

   private void Init(int i)
   {
     Console.WriteLine("int ctor {0}", i);
   }
}
link|flag
+1 I was going to answer this... you beat me to it ;-) – fretje Jun 12 at 8:32
vote up 0 vote down

EDIT: According to the comments on the original post this is a C# question.

Short answer: yes, using the this keyword.

Long answer: yes, using the this keyword, and here's an example.

class MyClass
{
   private object someData;

   public MyClass(object data)
   {
      this.someData = data;
   }

   public MyClass() : this(new object())
   {
      // Calls the previous constructor with a new object, 
      // setting someData to that object
   }
}
link|flag
the question was not about this, the question is asking if you can do this public MyClass() { // do something // then let us call another constructor this(new object() ); /// you can't do this! } – mfawzymkh Jun 12 at 6:56
thanks mfaawymkh ... so i can not do that. – Malay Jun 12 at 7:03
Ah ha, I understand now. Yeah, can't be done. – Ari Roth Jun 12 at 7:16
is it possible to class foo : fooBase{ public foo(string a) : this foo(a,null) : base(a) {} foo(string a, string b){}} ? – Arnis L. Jun 12 at 7:40
vote up 0 vote down

In C# it is not possible to call another constructor from inside the method body. You can call a base constructor this way: foo(args):base() as pointed out yourself. You can also call another constructor in the same class: foo(args):this().

When you want to do something before calling a base constructor, it seems the construction of the base is class is dependant of some external things. If so, you should through arguments of the base constructor, not by setting properties of the base class or something like that

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.