我试图遍历一个向量元素并试图找出向量中的位置是否等于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?
{
}
谢谢!
答案 0 :(得分:0)
你确定它是get(i)是null,而不是你已经超过_vecForShapes中的项目数? _vecForShapes.get(i)更可能抛出错误而不是比较为null。
什么类型得到(i)返回?