首先,Enumeration已经被Iterator取代了。。。。。Enumeration是个接口,不是类,使用时需要具体的实现类。里面只定义了两个方法: hasMoreElements()和nextElement()。而Iterable接口将上述两个方法的命名缩短了,同时提供了remove()方法。