🔒 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
  • 332
    Views
  • 1
    Participants
Last reply from:
flex012

Online now

Members online
996
Guests online
1,178
Total visitors
2,174

Forum statistics

Threads
2,277,039
Posts
28,973,868
Members
1,229,695
Latest member
Smile2742
Back
Top