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...

explain System.out.println

Answer Posted / zahid hussain indher

System is class of java.lang Package and we khow that all
the member of System class are static similiarly 'out' is
object of java.io.PrintStream class we use System.out mean
out is static object of java.io.PrintStream class and we are
familiar that if object of any class is achieved then we can
call the methods of that class and java.io.PrintStream class
provide a non-static method println() that is being called
by out object
System.out.println();
System = class
out = static object of java.io.PrintStram class
println()= is method of java.io.PrintStream

Hope Like the Answer

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the difference between abstract classes and interfaces in java?

1261


What is :: operator in java 8?

1078


Why is java architectural neutral?

1162


Can you explain the private protected field modifier?

1074


Difference between ‘is-a’ and ‘has-a’ relationship in java?

1043


What restrictions are placed on method overriding in java programming?

1052


Can we override tostring method in java?

1009


What do you know about the garbage collector in java?

1131


What are scalar data types?

1126


Highest level event class of the event-delegation model?

4064


What are filterstreams?

1115


How do we access static members in java?

1157


What is finalize()?

1264


Why isn’t there operator overloading?

1141


which one is more efficient int x; 1. if(x==null) 2.if(null==x) state which one either 1 or 2?

11384