提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
声明名为helloMessage的类变量的正确方法:
/* *来 自 时代Java公众号 - nowjava.com */ public class HelloApp { public static void main(String[] args) { HelloSayer h = new HelloSayer("Hello", "World"); h.sayHello(); } } class HelloSayer { private String greeting; private String addressee; /** 来 自 时代Java公众号 - nowjava.com **/ public HelloSayer(String greeting, String addressee) { this.greeting = greeting; this.addressee = addressee; } public