A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区
传智教育官网黑马程序员官网
只需一步,快速开始
18211001681
中级黑马
黑马币:14
帖子:84
精华:0
© 18211001681 中级黑马 / 2016-8-13 00:13 / 1217 人查看 / 2 人回复 / 0 人收藏 转载请遵从CC协议 禁止商业使用本文
Iterator<String> it = list.iterator(); while(it.hasNext()){ String s = (String)it.next(); System.out.println(s); }