🔒 Closed PaHelp po mga master, rewrite code (Java) to compile

Status
Not open for further replies.

flex012

Elite
Patulong lang po mga masterhood ko ..
Abstract Classes and Polymorphism

Using the following class below:
  1. Rewrite the code so that it will compile

Java:
    interface Animal {

        public String eating();
        public int breathing();

}
    abstract class Mammal implements Animal{

        abstract public int sleeping();
        public String eating() { }

}
    class Cat extends Mammal{

}
    public class Main {

        public static void main(){

            Cat cat = new Cat();
            cat.eating();
            cat.breathing();
            cat.sleeping();

    }

}
 
Status
Not open for further replies.

About this Thread

  • 0
    Replies
  • 344
    Views
  • 1
    Participants
Last reply from:
flex012

Trending Topics

Online now

Members online
637
Guests online
3,252
Total visitors
3,889

Forum statistics

Threads
2,307,504
Posts
29,179,370
Members
1,192,501
Latest member
Johnpaul112
Back
Top