- Java Tutorial
- Java Introduction
- Java Features
- Java Simple Program
- JVM, JDK and JRE
- Java Syntax
- Java Comments
- Java Keywords
- Java Variables
- Java Literals
- Java Separators
- Java Datatypes
- Java Operators
- Java Statements
- Java Strings
- Java Arrays
- Control Statement
- Java If
- Java If-else
- Java If-else-if
- Java Nested If
- Java Switch
- Iteration Statement
- Java For Loop
- Java For Each Loop
- Java While Loop
- Java Do While Loop
- Java Nested Loop
- Java Break/Continue
- Java Methods
- Java Methods
- Java Method Parameters
- Java Method Overloading
- Java Recursion
- Java OOPS
- Java OOPs
- Java Classes/Objects
- Java Inheritance
- Java Polymorphism
- Java Encapsulation
- Java Abstraction
- Java Modifiers
- Java Constructors
- Java Interface
- Java static keyword
- Java this keyword
- Java File Handling
- Java File
- Java Create File
- Java Read/Write File
- Java Delete File
- Java Program To
- Add Two Numbers
- Even or Odd Numbers
- Reverse a String
- Swap Two Numbers
- Prime Number
- Fibonacci Sequence
- Palindrome Strings
- Java Reference
- Java String Methods
- Java Math Methods
Java Constructors
In Java, a constructor is a special type of method that is automatically called when an object of a class is created. Here's an overview of constructors:
Definition:
- A constructor is a method with the same name as the class and no return type (not even void).
- It is used to initialize the state of an object.
- Example:
public class MyClass {
// Constructor
public MyClass() {
// Constructor body
}
}
Default Constructor:
- If a class does not explicitly define any constructors, a default constructor is automatically provided by the compiler.
- It initializes instance variables to their default values (0, null, false).
- Example:
public class MyClass {
// Default constructor
public MyClass() {
// Constructor body
}
}
Parameterized Constructor:
- Constructors can accept parameters to initialize instance variables with specified values.
- Example:
public class Person {
String name;
int age;
// Parameterized constructor
public Person(String n, int a) {
name = n;
age = a;
}
}
Constructor Overloading:
- Like methods, constructors can be overloaded by defining multiple constructors with different parameter lists.
- Example:
public class Student {
String name;
int rollNumber;
// Default constructor
public Student() {
// Constructor body
}
// Parameterized constructor
public Student(String n, int r) {
name = n;
rollNumber = r;
}
}
Summary
Constructors play a crucial role in initializing objects and setting their initial state. Understanding how to define and use constructors is essential for creating objects and initializing their properties in Java.