**在 Test 类中的 main()⽅法输出两个⼈的信息,在获取这两个⼈的信息时,使 ⽤了类 Test 类中的成员变量,⼀个是 Person girl,另⼀个是 Person boy;再通过 Test 类中的 Friends ⽅法对这两个变量进⾏赋值。(Person 类有 name、sex、age 三个属 性)
代码实现如下:
class Person{
String name;
String sex;
int age;
Person(String name,String sex,int age){
this.name=name;
this.sex=sex;
this.age=age;
}
}
public class Test{
Person girl,boy;
void Friends(Person girl,Person boy){
this.girl=girl;
this.boy=boy;
}
public static void main(String[]args){
Test t=new Test();
Person p1=new Person("小红","女",18);
Person p2=new Person("李华","男",18);
t.Friends(p1,p2);
System.out.println("姓名: "+t.girl.name+"\t性别: "+t.girl.sex+" \t年龄:"+t.girl.age);
System.out.println("姓名: "+t.boy.name+"\t性别:"+t.boy.sex+" \t年龄:"+t.boy.age);
}
}