我正在尝试在ArrayList中获取最后添加的项目,以将其与我即将添加的下一个项目进行比较。如果他们是平等的,继续。像:
if (stringArray.get(stringArray.IndexOfLastItemAdded()) == compareLastItemToThis) {
continue;
}
else {
stringArray.add(compareLastItemToThis);
}
我知道IndexOfLastItemAdded
不存在,但有类似的东西吗?
答案 0 :(得分:5)
stringArray.get(stringArray.size() - 1) ;
应该给你字符串Arraylist中的最后一项