Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 3 of 3

Thread: OutputStream in java

  1. #1
    Junior Member
    Join Date
    Sep 2011
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default OutputStream in java

    Respected PROGRAMMERS,
    Please explain out variable in System.out


    out is sometimes referred to be object of type OutputStream
    sometimes referred to as object of type PrintStream

    and even when it is predefined variable, it is sometimes assigned it to PrintWriter object


    PrintWriter out= response.getWriter();

    is it due to the fact that a superclass reference can be assigned the reference to objects of its subclass?


  2. #2
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: OutputStream in java

    Define what you mean by 'out'....this is extremely context dependent. Read the API for whatever you are referring - for instance System.out is a PrintStream, response.getWriter() is a PrintWriter...'out' in each case is a variable, one which is defined based upon the context.

  3. #3
    Junior Member
    Join Date
    Sep 2011
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: OutputStream in java

    Please forgive me for my negligence respected SIR.

    PrintWriter out = response.getWriter is from a servlet code.


    Since System.out is usually used in programs, so i thought that "out" must be a reserved word and hence it should not be used anyother way.
    Have lovely day!

Tags for this Thread