将Object arrayList对象转换为Integer

时间:2012-11-01 05:29:31

标签: java object arraylist

我创建了一个Object的ArrayList,它包含Integer和String。

List<Object> arrayList = new ArrayList<>();

使用以下条件我已检查它是否为整数

if(arrayList.get(indexValue) instanceof Integer){
 // Here how convert the object into integer
}

但问题是,如何将对象转换为整数?

由于

1 个答案:

答案 0 :(得分:2)

您可以将其明确地转换为Integer。

if(arrayList.get(indexValue) instanceof Integer){
  Integer i = (Integer)arrayList.get(indexValue);
}