BeginnersBook

  • Home
  • Java
    • Java OOPs
    • Java Collections
    • Java Examples
  • C
    • C Examples
  • C++
    • C++ Examples
  • DBMS
  • Computer Network
  • Python
    • Python Examples
  • More…
    • jQuery
    • Kotlin
    • WordPress
    • SEO
    • JSON
    • JSP
    • JSTL
    • Servlet
    • MongoDB
    • XML
    • Perl

Java – Default constructor with example

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

If you don’t implement any constructor in your class, the Java compiler inserts default constructor into your code on your behalf. You will not see the default constructor in your source code(the .java file) as it is inserted during compilation and present in the bytecode(.class file).
default constructor

Are no-arg constructor and default constructor same?

This is a confusing question for some as you may find different answers to this question from different sources. Some of you will not agree with me but as per my understanding they are different. The default constructor is inserted by compiler and has no code in it, on the other hand we can implement no-arg constructor in our class which looks like default constructor but we can provide any initialization code in it.

Default Constructor Example

class NoteBook{
   /*This is default constructor. A constructor does
    * not have a return type and it's name
    * should exactly match with class name
    */
   NoteBook(){
      System.out.println("Default constructor");
   }
   public void mymethod()
   {
      System.out.println("Void method of the class");
   }
   public static void main(String args[]){
	/* new keyword creates the object of the class
         * and invokes constructor to initialize object
         */
	NoteBook obj = new NoteBook();
	obj.mymethod();
   }
}

Output:

Default constructor
Void method of the class

Although I have covered the parameterized constructor in a separate post, lets talk about it here a little bit. Lets say you try to create an object like this in above program: NoteBook obj = new NoteBook(12); then you will get a compilation error because NoteBook(12) would invoke parameterized constructor with single int argument, since we didn’t have a constructor with int argument in above example. The program would throw a compilation error. Learn more about parameterized constructor here.

Top Related Articles:

  1. Final Keyword In Java – Final variable, Method and Class
  2. Abstract method in Java with examples
  3. Method Overloading in Java with examples
  4. Constructor Overloading in Java with examples
  5. Java Functional Interfaces

Tags: Java-OOPs

About the Author

I have 15 years of experience in the IT industry, working with renowned multinational corporations. Additionally, I have dedicated over a decade to teaching, allowing me to refine my skills in delivering information in a simple and easily understandable manner.

– Chaitanya

Comments

  1. prathima says

    March 29, 2016 at 5:09 AM

    quick query .
    Suppose a class does not have any constructor then JVM creates a constructor for the class . how does the created constructor looks like ?
    Given a class looks as given below

    class A{
    int num;
    public static void main(String args[]){
    A a=new A();
    }
    }

    Reply
    • Rajwinder says

      May 2, 2016 at 8:19 AM

      it will assign zero to variable num

      Reply
  2. Lazarus says

    July 20, 2016 at 7:53 PM

    is a no arg constructor and default constructor same? can we use the terminology interchangeably?

    Reply
    • Chaitanya Singh says

      August 18, 2017 at 11:34 AM

      Hey Lazarus, I have updated the guide and provided the answer to your Question.

      Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Java Tutorial

Java Introduction

  • Java Index
  • Java Introduction
  • History of Java
  • Features of Java
  • C++ vs Java
  • JDK vs JRE vs JVM
  • JVM - Java Virtual Machine
  • First Java Program
  • Variables
  • Data Types
  • Operators

Java Flow Control

  • Java If-else
  • Java Switch-Case
  • Java For loop
  • Java while loop
  • Java do-while loop
  • Continue statement
  • break statement

Java Arrays

  • Java Arrays

OOPs Concepts

  • OOPs Concepts
  • Constructor
  • Java String
  • Static keyword
  • Inheritance
  • Types of inheritance
  • Aggregation
  • Association
  • Super Keyword
  • Method overloading
  • Method overriding
  • Overloading vs Overriding
  • Polymorphism
  • Types of polymorphism
  • Static and dynamic binding
  • Abstract class and methods
  • Interface
  • Abstract class vs interface
  • Encapsulation
  • Packages
  • Access modifiers
  • Garbage Collection
  • Inner classes
  • Static import
  • Static constructor

Java Exception Handling

  • Exception handling
  • Java try-catch
  • Java throw
  • Java throws
  • Checked and Unchecked Exceptions
  • Jav try catch finally
  • Exception Examples
  • Exception Propagation

Collections Framework

  • Collections in Java
  • Java ArrayList
  • Java LinkedList
  • Java Vector
  • Java HashSet
  • Java LinkedHashSet
  • Java TreeSet
  • Java HashMap
  • Java TreeMap
  • Java LinkedHashMap
  • Java Queue
  • Java PriorityQueue
  • Java Deque
  • Comparable interface
  • Comparator interface
  • Collections Interview Questions

MORE ...

  • Java Scanner Class
  • Java 8 Features
  • Java 9 Features
  • Java Conversion
  • Java Date
  • Java Multithreading
  • Java I/O
  • Java Serialization
  • Java Regex
  • Java AWT
  • Java Swing
  • Java Enum
  • Java Annotations
  • Java main method
  • Java Interview Q

Copyright © 2012 – 2025 BeginnersBook . Privacy Policy . Sitemap