Constructor in Java
It is block of code that initializes the newly created Object. It has same name as its Class. Constructor has no return type. The constructor cannot be static, abstract or Final.
public class MyClass{
//This is the constructor
MyClass(){
}
...
akashpawal.hashnode.dev1 min read