在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 的实例"。