Just wondering System.out.println()

后端 未结 6 1913
故里飘歌
故里飘歌 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:28

    System is a class from package java.lang. out is a public, static member of System class, and println is a method, yes.

提交回复
热议问题