1. 程式人生 > >Java_println關鍵字列印一個無參的方法是不可以的。

Java_println關鍵字列印一個無參的方法是不可以的。

class Test{

  public void a(){}

  public static void main(String[] args){

    Test b=new Test();

    System.out.println(b.a());              //error

  }

}

The method println(boolean) in the type PrintStream is not applicable for the arguments (void)

控制檯輸出(println)不能列印一個空引數(void)的方法