本帖最后由 Miss小强 于 2013-5-12 10:31 编辑
不多说上代码:- Object obj = new ArrayList();
-
- //1111111111111111111111111
- if (obj instanceof ArrayList) {
- ArrayList list=(ArrayList)obj;
- }
- //22222222222222222222222
- if(obj!=null){
- if(obj.getClass()==ArrayList.class){
- ArrayList list=(ArrayList)obj;
- }
- }
复制代码 ps:instanceof关键字是怎么判断的? |