csv文件
构建决策树并进行预测
JAVA 遍历List
Posted on
三种遍历方法:
一:采用size()
for(int i = 0 ; i <objListstaff.size(); i++ ){
Object[] tempObj = objListstaff.get(i);
system.out.print(tempObj[0] + “————“ +tempObj[1] );
}