共计 635 个字符,预计需要花费 2 分钟才能阅读完成。
在 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 的实例 "。
丸趣 TV 网 – 提供最优质的资源集合!
正文完