MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / Human

Class Human

Programs/Overriding.java:1–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class Human{
2 //Overridden method
3 public void eat()
4 {
5 System.out.println("Human is eating");
6 }
7}
8class Boy extends Human{
9 //Overriding method
10 public void eat(){

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected