java.lang.Object
  |
  +--java.lang.Systemout是system类中的方法,返回PrintStream对象println是PrintStream类中的方法

解决方案 »

  1.   

    out is a static member of class System.
    static PrintStream out ;
    println() is a member function of class PrintStream
      

  2.   

    out是System的静态变量,是一个输出流,流向系统console,println是out的一个方法.
      

  3.   

    进来这里的兄弟们也帮小弟弟的眉下之急吧!!!!!!WinXP:本地帐号如下:系统管理员帐号禁用(控制面版-安全选项);
                 GUEST启用;
                 GY2帐号(从WIN98升级帐号);
    遇到这样的情况,GY2帐号被(控制面版-安全选项)设为非本地登入。
    (“恢复控制平台”可用,当然,它具有对硬盘的全权限操做)
                 要安装一本地打印机,该怎办?除了重装系统!!!!!!!!
      

  4.   

    public static final PrintStream outThe "standard" output stream. This stream is already open and ready to accept output data. Typically this stream corresponds to display output or another output destination specified by the host environment or user. 
    out是System的一个field,继承PrintStream类
    println("....")是PrintStream的一个静态方法。