System.out.println();括号里面可以直接写方法名输出吗?比如System.out.pr
System.out.println();括号里面可以直接写方法名输出吗?比如System.out.println(+hello()); |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|
可以,但是方法的返回值不能为void
publicclassHelloWorld{publicstaticvoidmain(String[]args){System.out.println(hello());System.out.println(sayHello());//会报错} publicstaticvoidsayHello(){ System.out.println("hello"); } publicstaticStringhello(){ return"hello"; }} |
|
|
|
|
可以的System.out.println();是输出语句,当然可以输出方法,但是方法要有返回值,也就是返回一个具体实数,一个字符,也就是方法返回的不能为空void, |
|
|
|
|