Is there any sense to declare default constructor in Java?

Posted by Artic on Stack Overflow See other posts from Stack Overflow or by Artic
Published on 2010-03-12T09:57:46Z Indexed on 2010/03/12 10:07 UTC
Read the original article Hit count: 165

Filed under:
|

Is there any sense to declare default constructor in Java?

class MyClass {
  public MyClass(){}
  public MyClass( T someArgs){
    //somecode
  }

}

© Stack Overflow or respective owner

Related posts about java

Related posts about constructor