当前位置: 技术问答>java相关
类型判断
来源: 互联网 发布时间:2015-07-18
本文导语: 得到一个类的实例怎么判断类型? 比如我得到一个oject,怎么判断是vector,还是hashmap,等等 | Object o ... if(o instanceof Vector){ //... } | if(object instanceof Vector){ System.o...
得到一个类的实例怎么判断类型?
比如我得到一个oject,怎么判断是vector,还是hashmap,等等
比如我得到一个oject,怎么判断是vector,还是hashmap,等等
|
Object o ...
if(o instanceof Vector){
//...
}
if(o instanceof Vector){
//...
}
|
if(object instanceof Vector){
System.out.println("object is a Vector");
}
if(object instanceof HashMap){
System.out.println("object is a HashMap");
}
.....
System.out.println("object is a Vector");
}
if(object instanceof HashMap){
System.out.println("object is a HashMap");
}
.....