引用元:http://docs.oracle.com/javase/8/docs/api/

println()メソッドの詳細(Java8)
 :PrintWriterクラスのメソッドです.
  :Systemクラスにて、PrintWriter型変数out から呼び出しています.
 / これは、メソッド説明の「簡易版」です.
 / さらに詳しい説明のページは、Oracleのページにあります.

void		println()
Terminates the current line by writing the line separator string.
 改行します。
  / the line separator string を、書き込むことによって、現在行を終わらせます.
   / line separator string:行区切り文字列
    / Java バージョン、1.4 での、和訳 です.
     / 改行文字と同じなのかは、私は分かりません.
      / 大事なのは、これは、改行するためのメソッドであることです.

void		println(boolean x)
Prints a boolean value and then terminates the line.
 ブーリアン値 を、プリントして、改行します。
  / ブーリアン値、、値/value と言っていることによって、
   / 値、すなわち、リテラル だと言っていることになる.

void		println(char x)
Prints a character and then terminates the line.
 文字 をプリントして、改行します。
  / 値とは、言っていないので、リテラルではない.
   / 例えば、「'a'」 ではなく、「a」 ということ.

void		println(char[] x)
Prints an array of characters and then terminates the line.
 文字の配列 をプリントして、改行します。

void		println(double x)
Prints a double-precision floating-point number and then terminates the line.
 倍精度浮動小数点数 を、プリントして改行します。

void		println(float x)
Prints a floating-point number and then terminates the line.
 浮動小数点数 を、プリントして改行します。

void		println(int x)
Prints an integer and then terminates the line.
 整数 を、プリントして改行します。

void		println(long x)
Prints a long integer and then terminates the line.
 long整数 を、プリントして改行します。

void		println(Object x)
Prints an Object and then terminates the line.
 オブジェクト を、プリントして改行します。

void		println(String x)
Prints a String and then terminates the line.
 文字列 を、プリントして改行します。