printstream class method println() is calling using System
class and its static object out .how it is explain any one
in detail with example ?



printstream class method println() is calling using System class and its static object out .how it ..

Answer / chandan kumar

import java.io.*;
class Other
{
public static PrintStream wise;
static
{
try{
wise=new PrintStream(new FileOutputStream("abc.txt"));
}
catch(Exception e)
{

}
}

}
public class AB
{
public static void main(String arg[])
{
Other.wise.println("hi");
}
}
This will print hi on a file abc.txt
some thing like this is written in class System. A static
object out of PrintStream Class is defined in static block
and connected to a Stream Connected to Console.So everythin
that we write with in print()method comes out as output

Is This Answer Correct ?    12 Yes 2 No

Post New Answer

More Core Java Interview Questions

write the hierarchy of component class?

1 Answers  


What is java oops?

0 Answers  


What is a super class and how super class be called?

3 Answers  


Define jit compiler?

0 Answers  


What is super?

0 Answers  






What is mnemonic code?

0 Answers  


What is proper subset?

0 Answers  


Why singleton is not thread safe?

0 Answers  


How variables are declared?

0 Answers  


Can a constructor be private and how are this() and super() method used with constructor?

0 Answers   Flextronics, Hexaware,


what is method reference in java 8?

0 Answers  


How can an exception be thrown manually by a programmer?

0 Answers  


Categories