Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Java by (13.1k points)
Can anyone help me with the method hiding in Java with any example?

1 Answer

0 votes
by (26.7k points)

You can prefer the below code which will help you understand the concept of method hiding:

public class Animal {

    public static void foo() {

        System.out.println("Animal");

    }

}

public class Cat extends Animal {

    public static void foo() {  // hides Animal.foo()

        System.out.println("Cat");

    }

}

I hope this will help.

Want to know more about Java? Prefer this tutorial on Java Tutorial.

Want to become a Java Expert? Join Java Certification now!!

Related questions

0 votes
1 answer
0 votes
1 answer
asked Aug 25, 2019 in Java by Shubham (3.9k points)
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

Browse Categories

...