Subscribe For Free Updates!

We'll not spam mate! We promise.

Saturday, 17 February 2018

QNS ON JAVA CONCEPTS, Why can a constructor in Java not be final, static or abstract

        1.   Why can a constructor in Java not be final, static or abstract? Ø  Instance variables and methods are members of a class, but not Constructor. Constructors are property of a class. Constructor cannot be overridden/inherited. It means like constructors cannot be call with objects like emp.details(); Ø ...