实现Foreach遍历的集合类,需要实现IEnumerable接口,泛型集合则需要实现IEnumerable<T>接口 using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; namespace Foreach { public class ListForeach<T> :IEnumerable<T> w…
Exception in thread "main" java.util.ConcurrentModificationException 并发修改异常引发的思考! 1 foreach循环删除元素 ①list遍历删除元素时会报错,比如下面删除字符串"aa",也有遍历不报错的例子,看下面的例子 public class TestMain { public static void main(String[] args) { ArrayList<String>…