show/hide this revision's text 4 updates from cletus

Do you want to make a string out of them?

String s = new StringBuilder().append(char1).append(char2).append(char3).toString();

Note that

String b = "b";
String s = "a" + "b" b + "c"
c";

Actually compiles to

String s = new StringBuilder("a").append("b").append("c").toString()StringBuilder("a").append(b).append("c").toString();

Edit: as litb pointed out, you can also do this:

"" + char1 + char2 + char3;

That compiles to the following:

new StringBuilder().append("").append(c).append(c1).append(c2).toString();

Edit (2): Corrected string append comparison since, as cletus points out, a series of strings is handled by the compiler.

The purpose of the above is to illustrate what the compiler does, not to tell you what you should do.

show/hide this revision's text 3 missing toString()

Do you want to make a string out of them?

String s = new StringBuilder().append(char1).append(char2).append(char3)StringBuilder().append(char1).append(char2).append(char3).toString();

Note that

"a" + "b" + "c"

Actually compiles to

new StringBuilder("a").append("b").append("c").toString();

Edit: as litb pointed out, you can also do this:

"" + char1 + char2 + char3;

That compiles to the following:

new StringBuilder().append("").append(c).append(c1).append(c2).toString();
show/hide this revision's text 2 added alt method

Do you want to make a string out of them?

String s = new StringBuilder().append(char1).append(char2).append(char3);

Note that

"a" + "b" + "c"

Actually compiles to

new StringBuilder("a").append("b").append("c")StringBuilder("a").append("b").append("c").toString();

Edit: as litb pointed out, you can also do this:

"" + char1 + char2 + char3;

That compiles to the following:

new StringBuilder().append("").append(c).append(c1).append(c2).toString();
show/hide this revision's text 1