Is there any sense to declare default constructor in Java?
class MyClass {
public MyClass(){}
public MyClass( T someArgs){
//somecode
}
}
|
Is there any sense to declare default constructor in Java?
|
|||
|
|
|
Yes, when you have other constructors.
|
|||
|
|
|
If you have a non default constructor, then default constructor is not implicitly available. It is a good idea not to put one if it is your goal is not to have anyone do :
|
|||
|
|
|
Java adds a default public no-args constructor if you specify no other constructors so there is a point in putting one if you need one and specify another. So in your case if you defined your class like this:
then you couldn't do this:
but if it were defined like this:
you could. Often no-arg constructors are used to specify pseudo-default arguments. For example:
|
|||
|
|
|
Besides all previous arguments for the no-args constructor, it is a mandatory element of JavaBeans, as these beans can be created using reflection (specifically by calling There is also an added benefit, as a no-args constructor can help introduce a kind of fluent interface, by letting you chain setter calls. As an example, in a company I worked for, Is used to define beside setters and getter with methods like this :
Allowing me to create objects the following way :
This was a very useful way of creating objects without to define bug constructors. |
|||
|
|
|
Certain frameworks will require that you have a zero-argument/default constructor. For example, you need one to run a class as a JUnit test case. [edit: removed incorrect statement] This is due to their use of reflection. |
|||||||
|