gpt4 book ai didi

java - java中带有接口(interface)的instanceof运算符

转载 作者:行者123 更新时间:2023-12-01 17:55:12 25 4
gpt4 key购买 nike

任何人都可以使用instanceof运算符解释Java中的以下行为。

Runnable r = new Thread();

尽管变量 r 的类型是 Runnable,并且 instanceof 比较是在不驻留在同一类层次结构中的类上完成的

System.out.println(r instanceof String); // This line does not compile 

System.out.println(r instanceof Vector); // This line compiles

System.out.println(r instanceof FileNotFoundException); // This line compiles

最佳答案

String 类是 final ——这意味着它不能被子类化。此外,它没有实现Runnable。所有这些在编译时都是已知的;因此,编译错误。

关于java - java中带有接口(interface)的instanceof运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45609564/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com