各用語の意味を知りたいSystem.out.println()ですか?
2 に答える
2
Systemis a class name, you access the class (not an instance of it) withSystem.*outis a class variable in that class of typePrintStreamprintln()is a method inPrintStream
于 2012-12-18T05:53:45.977 に答える
0
Systemクラス
outですPrintStreamクラス変数 クラス内 の
println()メソッドですPrintStream
于 2012-12-18T05:54:53.753 に答える