为什么这行代码会给我一个错误?

时间:2012-03-20 18:21:44

标签: android

我试图遍历一个向量元素并试图找出向量中的位置是否等于null ...

if(_vecForShapes.get(i)!=null)//this line works fine but when it gets to a position where        it is null it gives me an error? Any ideas?
{

}

谢谢!

1 个答案:

答案 0 :(得分:0)

你确定它是get(i)是null,而不是你已经超过_vecForShapes中的项目数? _vecForShapes.get(i)更可能抛出错误而不是比较为null。

什么类型得到(i)返回?