Java Method Overriding and Visibility [Snippet]
While overriding methods in Java is pretty straightforward, there are a couple subtleties that do come up every now and again. We take a look at one such gotcha.
Join the DZone community and get the full member experience.
Join For FreeThis post is about a little test I set up to get my head around one aspect of method overriding in Java. A method in a superclass can call either another superclass method or a subclass method, depending on the visibility of the methods involved.
These are the demo classes:
public class SuperClass {
public String a() {
return b();
}
public String b() {
return c();
}
public String c() {
return "superclass";
}
}
public class Subclass extends SuperClass {
public String a() {
return b() + b();
}
public String c() {
return "subclass";
}
}
new SuperClass().a()
returns “superclass”. new SubClass().a()
returns “subclasssubclass”.
If we change the visibility of method c() to private, however:
new SuperClass().a()
returns “superclass”. new SubClass().a()
returns “superclasssuperclass”.
In other words, superclass method b() will call the subclass implementation of c() if it is visible, or the superclass implementation if it is not.
Of course, if we then overrride b() in the subclass as well, things change again. Then we will see new SubClass().a()
returns “subclasssubclass” no matter whether c() is public or private.
Published at DZone with permission of Jaime Metcher, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
Azure Virtual Machines
-
How To Use an Automatic Sequence Diagram Generator
-
An Overview of Cloud Cryptography
-
How to Use an Anti-Corruption Layer Pattern for Improved Microservices Communication
Comments