posted 16 years ago
By Default, we can not OVERRIDE a constructor..think about final.
Why we use final ?:
When we don't want a particular thing to be Overridden..and we know that we can not override constructor..!! so there is no need to mention that..!!
Why we use abstract? :
Abstract is forcefully Override, Again if something can not be overridden that means it can not be abstract..
Final conclusion you can say that..constructors are implicitly final.