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 / rajashekhar p

exactly System.out.println();
Solution
System is a Predefined public final class in the
java.lang package.
and out is the static variable of type PrintStream.
and println() method is contain in PrintStream class..

Hence we can invoke this method through class name (i.e
System)
code like as follows........

final class System{
static PrintStream out;
}
class PrintStream{
println();
-----------
------------
}

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the driver class?

1092


What do you mean by platform independence? What is an interface?

1073


what is difference between equals and ==?

1120


What is your platform?s default character encoding and how to know this?

2414


Can we override the overloaded method?

1194


Explain about the security aspect of java?

1012


What is the purpose of encapsulation?

1055


Is it possible to define a method in java class but provide it’s implementation in the code of another language like c?

1071


What is use of a abstract variable?

1050


What is a local block?

1192


What will be the default values of all the elements of an array defined as an instance variable?

1079


java program with complete 4 oops concepts implemented example

3213


What are the different ways of creating thread?

1060


What is the purpose of a transient variable?

1117


What is string intern in java?

1088