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

Trending Topics

Online now

Members online
1,110
Guests online
3,341
Total visitors
4,451

Forum statistics

Threads
2,294,439
Posts
29,090,964
Members
1,207,321
Latest member
jasimjasim
Back
Top