Right now I'm using the following to minimize boxed object creation:
String myString = "" + myChar;
Is this the idiomatic way to do it? (IMHO it feels a little awkward.)
String.valueOf is your friend:
String.valueOf
I have a very short article on this subject, in fact.
String.valueOf(char) or Character.toString(char) (the latter calling the former)
String.valueOf(char)
Character.toString(char)
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
3 years ago
viewed
188 times
active
Get the weekly newsletter!
see an example newsletter
By subscribing, you agree to the privacy policy and terms of service.