interface definition in java code example
Example 1: how to implement a interface in java
interface methods{
public static hey();
}
class scratch implements methods{
public static hey(){
System.out.println("Hey");
}
}
Example 2: java interface
public interface Exampleinterface {
public void menthod1();
public int method2();
}
class ExampleInterfaceImpl implements ExampleInterface {
public void method1()
{
}
public int method2()
{
}
}
Example 3: java define interface
interface Animal {
public void eat();
public void travel();
}