Person 类 |
public class Person { public void say(String sentence){ System.out.println(sentence); } public void eat(){ System.out.println("正在吃食物"); } } |
普通 对象 | 匿名 对象 |
Person ps = new Person();ps.say("这是一个普通对象的创建"); | new Person().say("这是一个匿名对象的创建"); |
欢迎光临 精易论坛 (https://125.confly.eu.org/) | Powered by Discuz! X3.4 |