使用创建对象传递新对象进行赋值

package com_1;

public class Demo01 {
	public static void main(String[] args) {
		/*Person person = new Person();
		Pig pig = new Pig();
		person.eat(pig);*/
		new Person().eat(new Pig());
	}
}

class Person {
	public void eat(Pig pig) {
		System.out.println("我喜欢吃" + pig.name);
	}
}

class Pig {
	String name = "烤乳猪";
}
上一篇:山东大学软件工程应用与实践PIG小组代码综述


下一篇:1054 求平均值 (20 分)