Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Default constructor in Java

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Like C++, Java automatically creates default constructor if there is no default or parameterized constructor written by user, and (like C++) the default constructor automatically calls parent default constructor. But unlike C++, default constructor in Java initializes member data variable to default values (numeric values are initialized as 0, booleans are initialized as false and references are initialized as null).

For example, output of the below program is

0
null
false
0
0.0




// Main.java
class Test {
   int i;
   Test t;
   boolean b;
   byte bt;
   float ft;
}
  
public class Main {
    public static void main(String args[]) {
      Test t = new Test(); // default constructor is called.
      System.out.println(t.i);
      System.out.println(t.t);
      System.out.println(t.b);
      System.out.println(t.bt);
      System.out.println(t.ft);
    }
}

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

References:
http://leepoint.net/notes-java/oop/constructors/constructor.html

My Personal Notes arrow_drop_up
Last Updated : 10 Jul, 2018
Like Article
Save Article
Similar Reads
Related Tutorials