Just wondering System.out.println()

后端 未结 6 1848
故里飘歌
故里飘歌 2021-01-24 10:53

Just asking if I have the right understanding

System.out.println();

System is the package out is the class println() is the method

If t

6条回答
  •  北恋
    北恋 (楼主)
    2021-01-24 11:29

    out is a static object of printstream class
    System -class,

    PrintStream -class,

    out - static object of PrintStream class ,

    println - public method in PrintStream Class

提交回复
热议问题