Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

how system.out.println() works?

Answer Posted / subbu

//the System class belongs to java.lang package
class System {
public static final PrintStream out;
//...
}

//the Prinstream class belongs to java.io package
class PrintStream{
public void println();
//...
}

java.lang package is default package hence no need to import
additionaly to use System class

System is having static reference of PrintStream class whihc
has println() method.

So we can directly acces the println() using out referece.

System.out.println();

Is This Answer Correct ?    16 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

State some situations where exceptions may arise in java?

1041


If an application has multiple classes in it, is it okay to have a main method in more than one class?

1001


What is hashmap in java?

1048


Can you call a method in a method?

1075


Is it correct to say that due to garbage collection feature in java, a java program never goes out of memory?

1005


Explain the difference between static and dynamic binding in java?

1053


Write a program to reverse array in place?

1053


What is hashmap and map?

1001


Why is it important to initialize a variable?

980


How can we make sure main() is the last thread to finish in java program?

1183


What is the effect of keeping a constructor private?

939


What is console based application in java?

1019


Is it necessary that each try block must be followed by a catch block?

1005


Will minecraft java be discontinued?

1153


What is lastindexof in java?

1080