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

后端 未结 19 775
谎友^
谎友^ 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:31

    System is a class in java.lang package. And out is a PrintStream object. Nice explanation @ http://lazy-geeks.blogspot.in/2015/01/what-is-systemoutprintln.html

提交回复
热议问题