public static void main(String[] args){ //在 main 方法中调用 print 方法 HelloWorld test=new HelloWorld(); test.print();中的HelloWorld test=new HelloWorld();这句是起什么作用的额? 谢谢
1 回答
已采纳
_Exception
TA贡献18条经验 获得超9个赞
test 中得到 HelloWorld 对象, test.print(); 调用 HelloWorld 对象的 print() 方法, 在同一个类中 你把 print() 方法 改成 static 静态的, 就不用 HelloWorld test=new HelloWorld(); 了 , 在 main 方法中 可以 print();这样直接调用
添加回答
举报
0/150
提交
取消