-1

各用語の意味を知りたいSystem.out.println()ですか?

4

2 に答える 2

2
  • System is a class name, you access the class (not an instance of it) with System.*
  • out is a class variable in that class of type PrintStream
  • println() is a method in PrintStream
于 2012-12-18T05:53:45.977 に答える
0

Systemクラス
outですPrintStreamクラス変数 クラス内 の
println()メソッドですPrintStream

于 2012-12-18T05:54:53.753 に答える