猿问

Java 中的小问题 初学者

    public static void main(String[] args){

        

        //在 main 方法中调用 print 方法

        HelloWorld test=new HelloWorld();

        test.print();



中的HelloWorld test=new HelloWorld();这句是起什么作用的额? 

谢谢

Bin_X
浏览 1457回答 1
1回答

_Exception

test 中得到 HelloWorld 对象, test.print(); 调用 HelloWorld 对象的 print() 方法, 在同一个类中 你把 print() 方法 改成 static 静态的, 就不用  HelloWorld test=new HelloWorld(); 了  , 在 main 方法中 可以 print();这样直接调用
随时随地看视频慕课网APP

相关分类

Java
我要回答