Java Program using multiple interface
In this program, You will learn how to implement multiple interface in java.
interface A {
//declaration
}
interface B {
//declaration
}
class Test implements A, B {
//statement
}
Example: How to implement multiple interface in java.
interface A {
int x = 10;
}
interface B {
int y = 20;
}
class Main implements A, B {
void display() {
System.out.println("The x value is :" + x);
System.out.println("The y value is :" + y);
}
public static void main(String args[]) {
Main t = new Main();
t.display();
}
}
Output:
The x value is :10
The y value is :20