public class Helloworld7 {
public static void main(String args[]) {
Person p1 = new Person(“张三”,19);
Person p2 = new Person(“李四”,29);
Hair h = new Hair(“李四的一根头发”);
p2.h = h;
p1.m(p2.h);
}
}
class Person {
String name;
int age;
Hair h;
public Person(String name,int age) {
this.name = name;
this.age = age;
}
public void m(Hair a) {
System.out.println(name+”吃了”+a.info);
}
}
class Hair {
String info;
Hair(String info) {
this.info = info;
}
}
这里的头发当成是李四的一个属性,当头发类的对象被创建出来之后,把他的info赋值给李四,于是方法的形参是(Hair a)
转载于:https://www.cnblogs.com/jianzhi20093120/archive/2012/07/17/2596565.html
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/110365.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...