Submitted Questions

  • How we can implement the constructer nesting in java

    Ravindra Gautam

    • Jun 5th, 2006

    constructor nesting can be achieved only by this(parameter,parameter,...............). it's called with in a constructor,and it must be the first statement within the constructor within which it is ca...

    Sujeet Mishra

    • May 31st, 2006

    Constructor nesting can be achieved by using :this(parameters....)constructors with parameters can use the above to delagate calls to a non argument constructor and vice versa.