java中判断对象是否为每个类的实例
我们在java中如何判断一个对象是否为某个类呢?
我们肯定知道java中有一个 关键字叫 instanceof,用法如下
Integer num = 100;
if(num instanceof Object)
System.out.print("it's a object instance ...");
但是这个在某些场景下是可用的,但是这里有一个需求,根据抛出来的异常类型来做相应的处理,我们就可以知道instanceof 后面必须要是前面的父类或者是同一个类,应该这样使用,请看
try{
// some code
}catch(Exception e){
//根据异常类型做处理,这里不能用 e instanceof MyException1 这种形式,应该用下面这种形式
if(MyException1.class.isInstance(e) ){}
if(MyException2.class.isInstance(e) ){}
}