/**
* 第1题: 一个ArrayList对象aList中存有若干个字符串元素,现欲遍历该ArrayList对象,删除其中所有值为"abc"的字符串元素,请用代码实现 *
*/
public class Test1 {
public static void main(String[] args) {
ArrayList<String> aList = new ArrayList<String>();
// 1、添加测试元素
aList.add("abc");
for (int i = 0; i < 5; i++) {
aList.add("a"+i);
}
aList.add("abc");
// 2、遍历删除元素
for (int i = 0; i < aList.size(); i++) {
String str = aList.get(i);
if(str.equals("abc")) {
aList.remove(i);
}
}
System.out.println(aList);// 打印测试结果
}
}
|
|