0
About Method Return with String var
Public static BST1(String var1, String var2){ System.out.println (var1 + "\n" + var2);} This code have not a setted return, i want call this Method with 2 arg Strings and return this 2 (var1,var2) I was trying to build a Methods to get a kind of talking secuence, where every Method Will be a piece of talking between two peoples. No Matter at all, i want to know if im able to return two var from a String Method, and how to do It. Thanks for talking your time.
4 Réponses
+ 3
A method can return only one variable.
But for your two Strings you can use System.lineSeparator()
String s = "hello" + System.lineSeparator() + "world";
System.out.println(s);
Output:
hello
world
https://code.sololearn.com/ch1iXXA4oeB4/?ref=app
+ 3
Jay Matthews
I have read that System.lineSeparator() is platform independent. I am not sure about "\n".
+ 1
Thanks very helpful
0
I was wondering about this. But i found intresting this sentence at this moment both worths good. I didnt know about this Method, i Guess i Will find It useful at some point.