for(String temp4:temp3){}
String temp4:temp3 是个什么写法?
------解决方案--------------------
就是对temp3厘面的元素进行循环。
相当于:for( int i = 0; i < temp3.length; i++ ) {
String temp4 = temp3[i];
......
}
------解决方案--------------------
这个是在jdk1.5以后新增加的foreach循环,什么意思估计你看名字就能够知道了
------解决方案--------------------
------解决方案--------------------