answersLogoWhite

0


Best Answer

System.out.print is a standard output function used in java. where System specifies the package name , out specifies the class name and print is a function in that class. This function is different from the System.out.println() since it does not place a new line after printing the variable. System.out.println("hello"); // prints hello System.out.print("hello"); //also prints hello but if you then

System.out.println("how are you"); //it continues from the last print resulting in

// hellohow are you This also calls the default toString() method of the variable you put as the parameter.

Note: not all Classes have a helpful toString() method, i.e. arrays do not have toString(), thus a nasty memory address is printed.

User Avatar

Wiki User

16y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

System.out is a reference to a PrintStream object which sends all output to standard out - normally a console window.

Making a call to System.out.print(x) will print out any object, x.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

Check site: wrox Programmer to Programmer

Old but interesting.

This answer is:
User Avatar

User Avatar

Wiki User

15y ago

System.out.println() is a java statement that is used to print the text within the braces in the JVM console.

System.out.println("Hi") would print Hi in the Java console

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the meaning of System.out.print in java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is systemoutprint is an object?

System.out.println() is a general output line used in Java. System.out are objects of the perdifined class java.lang Println is a method within this class. This method can however be overridden.


What is the meaning of the word GUI in java?

Graphical User Interface http://en.wikipedia.org/wiki/Graphical_user_interface (there is no special meaning in Java, "GUI" is universally used)


What is literal in java programming?

Literal in java are L, F, null, true, false These act as keyword(have special meaning in java) but these does'nt comes under the category of Java Keyword.


What is the meaning of a method in Java programming?

a method is a variable


What is the meaning of the 2 in j2ee?

Java 2 Platform Enterprise Edition. The 2 means that it is Java number 2.


What are some nicknames for coffee?

* Joe * java * 'bucket of mud' ... meaning cup of coffee


What does the abbreviation JAVA stand for?

The name Java is not an acronym. The Development Team of Java has just chosen this name. The name Java specifically doesn't have any meaning rather it refers to the hot, aromatic drink COFFEE.


What is the meaning of deplyoment IN JAVA?

Deployment is the process of copying the compiled Java classes to a server or client. Once deployed, the server is able to run those classes (as in Java servlets), or serve those files to clients (as in Java applets), or be executed as programs (as in Java desktop applications).


What is the meaning of stand alone apps in java?

They stand alone. Forever alone.


What is the exact meaning of rich java client platform?

A Rich Java Client Platform i.e. Rich Client Platform (RCP) is a specialized computer program anticipated for the creation of Java applications built on the Eclipse architecture.


What commands are used to prints text in java?

System.out.println("text"); or System.out.print("text"); Please note that Java is case sensitive, meaning you must match uppercase and lowercase exactly.


What is the meaning of new keyword in java?

There is 48 reserved keywords currently defined in the java language. These keywords, combined with the syntax of the operators and separators,form the definition of the java language. these keywords can't be used as names for a variable,class or method. (chandramohan singh)