Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi This was the question asked in interview. Can we call one constructor from another if a class has multiple constructors in java and when?How can I call I mean syntax?

share|improve this question
Can you clarify the question? Multiple constructors are there to create the objects differently and can be called from other classes. They are made just for that purpose. – Teja Kantamneni Mar 3 '10 at 18:44
4  
he means calling a constructor from another one. – Woot4Moo Mar 3 '10 at 18:45

6 Answers

up vote 18 down vote accepted

You can, and the syntax I know is

this(< argument list >);

You can also call a super class' constructor through

super(< argument list >);

Both such calls can only be done as the first statement in the constructor (so you can only call one other constructor, and before anything else is done).

share|improve this answer
5  
And you can't do anything that requires a reference to this. – Software Monkey Mar 3 '10 at 19:18
it also must be in the first line of the constructor – sixtyfootersdude Jul 11 '10 at 0:51

Yes, you can do that.

Have a look at the ArrayList implementation for example:

public ArrayList(int initialCapacity) {
    super();
    if (initialCapacity < 0)
        throw new IllegalArgumentException("Illegal Capacity: "+
                                           initialCapacity);
    this.elementData = new Object[initialCapacity];
}

/**
 * Constructs an empty list with an initial capacity of ten.
 */
public ArrayList() {
    this(10);
}

The second constructor calls the first one with a default capacity of ten.

share|improve this answer
this(other, args);
share|improve this answer
2  
This is either misleading or just plain wrong! What is other? You simply invoke the other constructor using this(args-required-by-constructor) or super(args-required-by-constructor); – Software Monkey Mar 3 '10 at 19:15
2  
Chill out. Don't take things so literally. Most people here figured out "other, args" refers to the other arguments of the other constructor. – Oli Mar 3 '10 at 21:45

FYI, this is called the telescoping/telescopic constructor pattern.

It's discussed in JLS 8.8.7.1 Explicit Constructor Invokations

  • Alternate constructor invocations begin with the keyword this (possibly prefaced with explicit type arguments). They are used to invoke an alternate constructor of the same class.
  • Superclass constructor invocations begin with either the keyword super (possibly prefaced with explicit type arguments) or a Primary expression. They are used to invoke a constructor of the direct superclass.
share|improve this answer

None of the answers are complete, so I'm adding this one to fill in the blanks.

You can call one constructor from another in the same class, or call the super class, with the following restrictions:

  1. It has to be the first line of code in the calling constructor.
  2. It cannot have any explicit or implicit reference to this. So you cannot pass an inner class (even an anonymous one if it references any instance methods), or the result of a non-static method call, as a parameter.

The syntax (as mentioned by others) is:

MyClass() {
   someInitialization();
}

MyClass(String s) { 
     this();
     doSomethingWithS(s);
}
share|improve this answer

example:

public class FileDb {

  /**
   * 
   */
  public FileDb() {
    this(null);
  }

  public FileDb(String filename) {
    // ...
  }

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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