Home  >  Article  >  Java  >  Access modifier method overriding in Java

Access modifier method overriding in Java

PHPz
PHPzforward
2023-09-04 12:45:07837browse

Access modifier method overriding in Java

Yes, we can override the method by changing only the access modifier in java related to the following rules:

The access level cannot be more restrictive than the access level of the overridden method. For example: If a superclass method is declared public, an overridden method in a subclass cannot be private or protected.

The above is the detailed content of Access modifier method overriding in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete