Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within Java in General
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
Helidon Revealed: A Practical Guide to Oracle’s Microservices Framework
this week in the
Java in General
forum!
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Tim Cooke
paul wheaton
Liutauras Vilda
Ron McLeod
Sheriffs:
Jeanne Boyarsky
Devaka Cooray
Paul Clapham
Saloon Keepers:
Scott Selikoff
Tim Holloway
Piet Souris
Mikalai Zaikin
Frits Walraven
Bartenders:
Stephan van Hulst
Carey Brown
Forum:
Java in General
return?
Rayt Leeop
Greenhorn
Posts: 23
posted 13 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
The code:
public
String
toString() {
return "X=" + x + " " + "Y=" + y;
}
the result is "x=.., y=.."
How can I make xw in two lines:
x=...
y=...
Thanks
Christopher Nortje
Greenhorn
Posts: 16
posted 13 years ago
1
Number of slices to send:
Optional 'thank-you' note:
Send
Just add a newline (line feed) character instead of the space " " use "\n"
Campbell Ritchie
Marshal
Posts: 80076
410
posted 13 years ago
1
Number of slices to send:
Optional 'thank-you' note:
Send
Better not to use \n unless you specificially require \n. You actually want line end. It would be better to use the %n tag:
return String.format("x = %d%ny = %d", x, y); // Assumes x and y are integers.
Politics n. Poly "many" + ticks "blood sucking insects". Tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
equals()
Operator precedence
question on iteration
Java Increment Operator pre/post fix
Rounding up function
More...