Why you can't declare a class abstract and final?
Is there some internal rule the system just rejects, or what?
Can somebody provide a sample program demonstrating this?
Thanks,
Coder752
Printable View
Why you can't declare a class abstract and final?
Is there some internal rule the system just rejects, or what?
Can somebody provide a sample program demonstrating this?
Thanks,
Coder752
final means "absolutely no child classes"
abstract means " I must have child classes to implement what I have defined"
Thanks for the interpretation.