what is the definition of interface in java code example
Example 1: java interface
public interface Exampleinterface {
public void menthod1();
public int method2();
}
class ExampleInterfaceImpl implements ExampleInterface {
public void method1()
{
//code here
}
public int method2()
{
//code here
}
}
Example 2: interface base1 void method();
interface Base