猿问

创建一个有两个方法的类,要求其中一个方法两次调用第二个方法,第一次不使用this,第二次使用this

慕莱坞1455667
浏览 1417回答 1
1回答

botao555

public class Test{     public static void main(String[] args){         Test test = new Test();         test.say();     }     public void say(){         outWord("Hello ");         this.outWord("World");     }     public void outWord(String str){         System.out.print(str);     } }
随时随地看视频慕课网APP

相关分类

Java
我要回答