Iterator it=hs.iterator();
while(it.hasNext())
{
 System.out.println(it.next());
}
这个wihle循环中 next()仅仅是返回一个元素,打印出来后,it怎么指向的下一个元素呢?