群上看到的一道面试题。原题好像有误,做了些改动!
package net.liulixin.LianXi;
public class User {
public int id;
public String rempay;
public String mark;
public String name;
public User() {
};
public User(int id, String rempay, String mark, String name) {
this.id = id;
this.rempay = rempay;
this.mark = mark;
this.name = name;
}
}
package net.liulixin.LianXi;
import java.util.ArrayList;
import java.util.List;
public class ShowUserInfo {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
List<User> list = new ArrayList<User>();
User u=new User();
String one=new String();
String two=new String();
String three=new String();
User u1 = new User(1, "", "", "n1");
list.add(u1);
User u2 = new User(1, "r2", "m3", "n2");
list.add(u2);
User u3 = new User(1, "", "", "");
list.add(u3);
User u4 = new User(2, "2r3", "2m1", "2n4");
list.add(u4);
User u5 = new User(2, "2r3", "", "2n5");
list.add(u5);
User u6 = new User(2, "", "", "2n6");
list.add(u6);
for (int i = 0; i < list.size(); i++) {
//System.out.println("list at " + i + ":" + list.get(i));
u=list.get(i);//获得ArrayList的第i个元素
//System.out.println(list.get(i)==u4);
one=u.rempay;
two=u.mark;
three=u.name;
if(one!=""&&two!=""&&three!="")
System.out.println(u.id+" "+one+" "+two+" "+three);
}
}
}