A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 可见 中级黑马   /  2012-3-12 11:51  /  2197 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

String[]  a= new String[]{"1","2","3","4"........}
String[]  b= new String[]{"11","22","33","44"........}
String[]  c= new String[]{"111","222","333","444"........}
......
有N个数组,且数组里有N个元素,如何分别取出每个数组里的第1-N个元素,添加到对象里,即    class Student{  
    String id;  
    String name;  
     ....
    //id 和name是Student的属性  
    }  
Student.setId(a[0]);
Student.setName(b[0])....;

Student.setId(a[1]);
Student.setName(b[1])....;

1 个回复

倒序浏览
如果要用for循环来处理这两个数组,那要确保这两个数组的个数是相同的,且对应,比如a[]数组是ID,b[]数组是名字,那么要是有10个ID就必须要有10个name。可以确保这个就可以这么做:传入要获取的两个数组,和要取的前多少个数量num;
List<Student> getStudent(String[] id, String[] name, num)
{
     List<Student> list = new ArrayList<Student>();
    if(num <= id.length)
     {
         for(int i = 0; i < num; i++){
              Student s = new Student(id[i], name[i]);
              list.add(s);
        }
     }
   return list;
}

class Student{
private String id;
private String name;
Student(String id, String name){
   this.name = name;
   this.id = id;
}

public String getName(){
  return this.name;
}
public String getId(){
  return this.id;
}

}
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马