| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/githubanalyzeruser/Java-Programs/master/polymorphism/Cat.java | [Back] [Original] |
package polymorphism;
class Cat extends Animal {
// This is method overriding.
// Method shout in Animal is being overridden.
// Overriding Class cannot reduce visibility of the method.
// So, shout method cannot be declared as protected.
public String shout() {
return "Meow Meow";
}
}
| Web Proxy Viewer | New URL | Original Page |