要在main方法中调用print方法,首先要声明并实例化对象!因为类是抽象的
具体操作是 类名称(HelloWorld) 对象名称(test) HelloWorld test; //声明了
然后通过关键字new分配空间 test = new HelloWorld(); //分配空间了
合成一起就是 HelloWorld test = new HelloWorld(); //声明并实例化
最后调用方法的格式是:对象(test).方法(print) test.print
要在main方法中调用print方法,首先要声明并实例化对象!因为类是抽象的
具体操作是 类名称(HelloWorld) 对象名称(test) HelloWorld test; //声明了
然后通过关键字new分配空间 test = new HelloWorld(); //分配空间了
合成一起就是 HelloWorld test = new HelloWorld(); //声明并实例化
最后调用方法的格式是:对象(test).方法(print) test.print