Constructors Overview
What are constructors?
Constructors are specialized setter methods that have the same name as that of the class.
class Student{
private int age;
private String name;
Student(){
System.out.println("This is a constructor with zero ...
shishirslearningjourney.hashnode.dev8 min read