1 回答
botao555
TA贡献48条经验 获得超46个赞
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);
}
}添加回答
举报
0/150
提交
取消
