Flask接口签名sign原理与实例代码浅析
248
2023-08-04
Java关键字instanceof的两种用法实例
instanceof关键字用于判断一个引用类型变量所指向的对象是否是一个类(或接http://口、抽象类、父类)的实例。
举个例子:
复制代码 代码如下:
public interface IObject {
}
public class Foo implements IObject{
}
public class Test extends Foo{
}
public class MultiStateTest {
public static void main(String args[]){
 http://; test();
}
public static void test(){
IObject f=new Test();
if(f instanceof java.lang.Object)System.out.println("true");
if(f instanceof Foo)System.out.println("true");
if(f instanceof Test)System.out.println("true");
&nbshttp://p; if(f instanceof IObject)System.out.println("true");
}
}
输出结果:
复制代码 代码如下:
true
true
true
true
另外,数组类型也可以使用instanceof来比较。比如
复制代码 代码如下:
String str[] = new String[2];
则str instanceof String[]将返回true。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~