Skip to main content

Posts

Showing posts with the label Constructors

Constructors

Constructors | Java: Constructor is called when the object is created. It is also a method with the same name of class. Syntax:                        class class_name {                                                 // statements.                                                 class_name(par1,par2,...,parn) // constructor                                                 {                                                           ...