黑马程序员技术交流社区
标题:
java将数组里的值,做为对象属性值。
[打印本页]
作者:
可见
时间:
2012-3-12 11:51
标题:
java将数组里的值,做为对象属性值。
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])....;
作者:
薛波
时间:
2012-3-12 13:56
如果要用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;
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2