Java Interfaces
A Java interface is a bit like a class, except you can only
    declare methods and variables in the interface. You cannot actually implement the methods.
    Interfaces are a way to achieve polymorphism in Java.
example
example
interface Animal { public void eat(); public void travel(); }
 
public class MammalInt implements Animal{
   public void eat(){
      System.out.println("Mammal eats");
   }
   public void travel(){
      System.out.println("Mammal travels");
   } 
   public int noOfLegs(){
      return 0;
   }
   public static void main(String args[]){
      MammalInt m = new MammalInt();
      m.eat();
      m.travel();
   }
}  
Comments
Post a Comment