标签:eof string 包装 int span 增强 font object iter
S儿童集合的遍历:
第一种:for增强循环
Set<String> set = new HashSet<String>();
for (String str : set) {
System.out.println(str);
}
第二种:迭代器遍历
Iterator<String> it = set.iterator();
while (it.hasNext()) {
System.out.println(it.next);
}
第三种:用的比较少(主要用于泛型的遍历)
比如:
Set<Object> set = new HashSet<Object>();
for (Object obj: set) {
if(obj instanceof Integer){ //若是Integer类型对象
int aa= (Integer)obj; //从包装类Integer 转为基本数据类型
}else if(obj instanceof String){ //若是String类型对象 转为String类型
String aa = (String)obj
}
}
标签:eof string 包装 int span 增强 font object iter
原文地址:http://www.cnblogs.com/aizj/p/7553537.html