Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
標準の入力/出力に関して、Systemクラスはどのように構造化/設計されていますか?
Systemクラスには、outを返すpublicfinalメソッドがありますPrintStream。メソッドはネストされたメソッドですか、それともprintln()呼び出した場合、それはどのように正確に機能しますSystem.out.println();か?
out
PrintStream
println()
System.out.println();
outはpublic static final変数であり、静的であるためout、asを取得できますSystem.out(つまり、静的な方法で)。
public static final
System.out
outはメソッドPrintStreamを含むであり、 (から)からメソッドにprintln()アクセスしています。println()PrintStreamout