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!