java中Eclipse关于调用方法的讲解,没看懂

发布网友 发布时间:2022-04-21 07:04

我来回答

2个回答

热心网友 时间:2022-06-18 14:49

这个类包含3个方法,返回值都为void,分别为showMsg(),callOther(),main(String[] args),其中main(String[] args)方法是程序入口函数,启动时被系统最先调用,然后该方法new了一个对象ob,ob调用了callOther()方法callOther()里面调用了showMsg()方法,showMsg()里面调用了System.out.print()方法,System.out.print()的作用就是向屏幕输出一句话,所以运行之后屏幕会显示This is showMsg method追问谢谢,综合两人的答案看了明白了不少,谢谢你!

热心网友 时间:2022-06-18 14:49

从主函数开始看

public class testMethod 
{
         //⑤该函数被callOther调用
         public void showMsg(){
             //⑥打印信息
             System.out.print("This is showMsg method");
         }
         
         //③对象ob调用该函数
         public void callOther(){
             //④在callOther中调用同一个类中的另一个函数,打印信息showMsg();
             showMsg();
         }
         
         public static void main(String[] args){
             //①--程序开始,新建类testMethod实例对象ob
             testMethod ob=new testMethod();
             //②对象调用自己成员函数callOther()
             ob.callOther();
         }
}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com