我想要显示句子"你好"这是在main
方法的完成过程之后:
这意味着我想连续运行方法。
我只能运行main方法而不能显示句子"你好"。
我该如何解决这个问题?
答案 0 :(得分:1)
我相信你想要做的是在main方法的末尾调用hello方法。此外,您在}
System.out.println("Hello");
这样的事情:
public class YourClassName {
public static void main (String [] theArgs){
//your code here ....
hello();
}
public static void Hello(){
System.out.println("Hello");
}
}