在Java中,可以使用instanceof
關鍵字來判斷一個對象是否實現了某個接口。下面是一個示例:
interface MyInterface {
// 接口方法
void myMethod();
}
class MyClass implements MyInterface {
// 實現接口方法
public void myMethod() {
System.out.println("MyClass 實現了 MyInterface 接口");
}
}
class Main {
public static void main(String[] args) {
MyClass obj = new MyClass();
// 使用 instanceof 判斷對象是否實現了接口
if (obj instanceof MyInterface) {
System.out.println("obj 是 MyInterface 的實例");
} else {
System.out.println("obj 不是 MyInterface 的實例");
}
}
}
輸出結果:
obj 是 MyInterface 的實例
在這個示例中,MyClass
類實現了MyInterface
接口,并且通過instanceof
判斷obj
對象是否是MyInterface
的實例。由于obj
是由MyClass
類創建的,也就是MyClass
類的一個實例,同時也實現了MyInterface
接口,因此obj
被判斷為MyInterface
的實例,輸出結果為"obj 是 MyInterface 的實例"。