java中的instanceof关键字详细解读
instanceof关键字
instanceof 是 Java 的保留关键字,它的作用是测试它左边的对象是否是它右边的类的实例,返回 boolean 的数据类型。
代码中可能遇到的情况:
1、基本数据类型
如上图,这种情况会报错。将右边的类型改为引用类型:
依旧报错,改成特殊的null:
依旧报错,由此得出:基本类型不能用于 instanceof 判断。
为了验证这一点,换一个基本数据类型double进行测试:
依旧报错,可以验证结论正确。
2、引用类型
创建如下关系的类和接口:
测试一:
public static void main(String[] args) { Dog dog = new Dog(); Animal animal = new Animal(); Animal cat = new Cat(); System.out.println("dog instanceof Dog的结果是:" + (dog instanceof Dog)); // true System.out.println("dog instanceof Big的结果是:" + (dog instanceof Big)); // true System.out.println("animal instanceof Big的结果是:" + (animal instanceof Big)); // true System.out.println("animal instanceof Dog的结果是:" + (animal instanceof Dog)); // false System.out.println("cat instanceof Animal的结果是:" + (cat instanceof Animal)); // true System.out.println("cat instanceof Cat的结果是:" + (cat instanceof Cat)); // true }
打印结果:
dog instanceof Dog的结果是:true
dog instanceof Big的结果是:true
animal instanceof Big的结果是:true
animal instanceof Dog的结果是:false
cat instanceof Animal的结果是:true
cat instanceof Cat的结果是:true
测试二:
- 基本类型完全不能用于 instanceof 判断
- null 只能放在 instanceof 关键字的左边
3、数组类型
延续引用类型示例,可以得到数组类型用来判断时的情况:
Dog[] dog = new Dog[3]; Animal animal = new Animal(); System.out.println("dog instanceof Dog[]的打印结果是:"+(dog instanceof Dog[])); System.out.println("dog instanceof Big[]的打印结果是:"+(dog instanceof Big[]));
打印结果:
dog instanceof Dog[]的打印结果是:true
dog instanceof Big[]的打印结果是:true
特别地,基本类型的数组也是可以用来判断的:
int[] arr = new int[3]; System.out.println("arr instanceof int[]的打印结果是:"+(arr instanceof int[]));
打印结果:
arr instanceof int[]的打印结果是:true
4、应用场景
instanceof 关键字一般用于强制转换,在强转之前用它来判断是否可以强制转换:
/** *======================================== * @方法说明 : 空判断 空返回true * @param obj * @return boolean * @exception *======================================== */ public static boolean isEmpty(Object obj) { if (obj == null || "null".equals(obj.toString()) || "".equals(obj.toString())) { return true; } if (obj instanceof String) { return ((String) obj).trim().length() == 0; } if (obj instanceof Collection) { return ((Collection) obj).isEmpty(); } if (obj instanceof Map) { return ((Map) obj).isEmpty(); } return false; }
到此这篇关于java中的instanceof关键字详细解读的文章就介绍到这了,更多相关instanceof关键字内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
聊聊在获取方法参数名方面,Spring真的就比Mybatis强?
在获取方法参数名方面,Spring真的就比Mybatis强吗?今天就带大家聊聊这个话题,如有错误或未考虑完全的地方,望不吝赐教2021-12-12Netty分布式NioSocketChannel注册到selector方法解析
这篇文章主要为大家介绍了Netty分布式源码分析NioSocketChannel注册到selector方法的解析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2022-03-03javabean servlet jsp实现分页功能代码解析
这篇文章主要为大家详细解析了javabean servlet jsp实现分页功能代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2016-09-09Springboot+hibernate实现简单的增删改查示例
今天小编就为大家分享一篇Springboot+hibernate实现简单的增删改查示例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2018-08-08
最新评论