Private Constructor in Java

In Java, the constructoris a special type of method that has the same name as the class name. Internally, a constructor is always called when we create an object of the class. It is used to initialize the state of an object. In the same way, Java also allows us to create a private constructor. In this section, … Continue reading Private Constructor in Java