“out”好象是标准输出设备,print就用我说了吧。

解决方案 »

  1.   

    就是注意大小写而已,JAVA很敏感的
      

  2.   

    输出到系统的输出设备上,打印
    out-输出设备
    in-输入设备
      

  3.   

    Class System java.lang.Object
      |
      +--java.lang.System
    public static final PrintStream "out":The "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. 
      

  4.   

    System.out表明out是System类下的一个实例(是一个static variale)
    它的定义是:public static final PrintStream out
    print()是PrintStream的一个method。
      

  5.   

    java.lang.Object 
       | 
       +----java.lang.System 
     
    ______________________________________________________________________________ 
     
     public final class System   
     extends Object  This Class provides a system-independent interface to system functionality. One of the more useful things provided by this Class are the standard input and output streams. The standard input streams are used for reading character data. The standard output streams are used for printing. For example:         System.out.println("Hello World!"); 
     
    This Class cannot be instantiated or subclassed because all of the methods and variables are static. ---------------------------------------------------------------------
    method : 
      out   public static PrintStream out 
     
      Standard output stream. This stream is used for printing messages.  
    --------------------------------------------------------------------------- 
     Class java.io.PrintStream   java.lang.Object 
       | 
       +----java.io.OutputStream 
               | 
               +----java.io.FilterOutputStream 
                       | 
                       +----java.io.PrintStream 
     
    ______________________________________________________________________________ 
     
     public class PrintStream   
     extends FilterOutputStream  This class implements an output stream that has additional methods for printing. You can specify that the stream should be flushed every time a newline character is written.  
    The top byte of 16 bit characters is discarded.  Example:         System.out.println("Hello world!"); 
            System.out.print("x = "); 
            System.out.println(x); 
            System.out.println("y = " + y); 
     
    ______________________________________________________________________________ 
     
    手头准备点帮助文档什么的,会有很大帮助的
      

  6.   

    调用System.out返回一个PrintStream对象,这个PrintStream对象有print方法,就会输出到屏幕上