Can you override a protected method?
I'll answer
Earn 20 gold coins for an accepted answer.20
Earn 20 gold coins for an accepted answer.
40more
40more
Studied at the University of Manchester, Lives in Manchester, UK.
Protected can be accessed only by subclasses in other packages. Classes in the same package can also access protected fields, methods and constructors as well, even if they are not a subclass of the protected member's class. Override : An instance method in a subclass with the same signature.
2023-05-08 12:30:28
评论(499)
Helpful(122)
Helpful
Helpful(2)

Amelia Lewis
QuesHub.com delivers expert answers and knowledge to you.
Protected can be accessed only by subclasses in other packages. Classes in the same package can also access protected fields, methods and constructors as well, even if they are not a subclass of the protected member's class. Override : An instance method in a subclass with the same signature.