What's the meaning of System.out.println in Java?

后端 未结 19 847
谎友^
谎友^ 2020-11-27 11:49

Is this static println function in out class from System namespace?

namespace System {
  class out {
    static println ...         


        
19条回答
  •  一个人的身影
    2020-11-27 12:33

    System is the java class.

    out is the instance and also static member of PrintStream.

    println is the method of PrintStream.

提交回复
热议问题