package top.hyself;
public class Birth {
public static void main(String[] args) {
Test_1023 human1 = new Test_1023(100001,"Fitz",1,26,"北京");
Test_1023 human2 = new Test_1023(100002,"Simmons",0,25,"北京");
Test_1023 human3 = new Test_1023(100003,"Ward",1,28,"天津");
Test_1023 human4 = new Test_1023(100004,"Daisy",0,21,"上海");
print(human1);print(human2);print(human3);print(human4);
}
public static void print(Test_1023 x) {
// TODO Auto-generated method stub
String sex;
if(x.getSex() == 1)
sex = "男";
else sex = "女";
System.out.println("id:" + x.getId() +",name:" + x.getName() + ",sex:" + sex + ",age:"
+ x.getAge() + ",city:" + x.getCity());
}
}

