Google News
logo
Java Constructor - Interview Questions
Why constructors cannot be abstract in Java?
When you set a method as abstract, then “The method doesn’t or cannot have body”. A constructor will be automatically called when object is created. It cannot lack a body moreover an abstract constructor could never be implemented.
Advertisement