How to concatenate characters in java? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T02:48:44Zhttp://stackoverflow.com/feeds/question/328249http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/328249/how-to-concatenate-characters-in-java1How to concatenate characters in java?Wilson2008-11-30T00:22:49Z2009-09-02T22:32:18Z
<p>How do you concatenate characters in java? Concatenating strings would only require a <code>+</code> between the strings, but concatenating chars using <code>+</code> will change the value of the char into ascii and hence giving a numerical output. I want to do <code>System.out.println(char1+char2+char3...</code> and create a String word like this.</p>
<p>I could do </p>
<pre><code>System.out.print(char1);
System.out.print(char2);
System.out.print(char3);
</code></pre>
<p>But, this will only get me the characters in 1 line. I need it as a string. Any help would be appreciated.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/328249/how-to-concatenate-characters-in-java/328253#32825310Answer by Dustin for How to concatenate characters in java?Dustin2008-11-30T00:28:46Z2008-11-30T05:24:12Z<p>Do you want to make a string out of them?</p>
<pre><code>String s = new StringBuilder().append(char1).append(char2).append(char3).toString();
</code></pre>
<p>Note that</p>
<pre><code>String b = "b";
String s = "a" + b + "c";
</code></pre>
<p>Actually compiles to</p>
<pre><code>String s = new StringBuilder("a").append(b).append("c").toString();
</code></pre>
<p><strong>Edit</strong>: as litb pointed out, you can also do this:</p>
<pre><code>"" + char1 + char2 + char3;
</code></pre>
<p>That compiles to the following:</p>
<pre><code>new StringBuilder().append("").append(c).append(c1).append(c2).toString();
</code></pre>
<p><strong>Edit (2)</strong>: Corrected string append comparison since, as cletus points out, a series of strings is handled by the compiler.</p>
<p>The purpose of the above is to illustrate what the compiler does, not to tell you what you should do.</p>
http://stackoverflow.com/questions/328249/how-to-concatenate-characters-in-java/328255#3282550Answer by Ewen Cartwright for How to concatenate characters in java?Ewen Cartwright2008-11-30T00:29:53Z2008-11-30T00:39:02Z<p>You need a String object of some description to hold your array of concatenated chars, since the <code>char</code> type will hold only a single character. e.g., </p>
<pre><code>StringBuilder sb = new StringBuilder('a').append('b').append('c');
System.out.println(sb.toString);
</code></pre>
http://stackoverflow.com/questions/328249/how-to-concatenate-characters-in-java/328256#3282561Answer by sblundy for How to concatenate characters in java?sblundy2008-11-30T00:30:06Z2008-11-30T00:30:06Z<p>You need to tell the compiler you want to do String concatenation by starting the sequence with a string, even an empty one. Like so:</p>
<pre><code>System.out.println("" + char1 + char2 + char3...);
</code></pre>
http://stackoverflow.com/questions/328249/how-to-concatenate-characters-in-java/328257#3282573Answer by Johannes Schaub - litb for How to concatenate characters in java?Johannes Schaub - litb2008-11-30T00:30:58Z2008-11-30T00:30:58Z<p>If you have a bunch of chars and want to concat them into a string, why not do </p>
<pre><code>System.out.println("" + char1 + char2 + char3);
</code></pre>
<p>?</p>
http://stackoverflow.com/questions/328249/how-to-concatenate-characters-in-java/328334#3283345Answer by cletus for How to concatenate characters in java?cletus2008-11-30T01:56:43Z2008-11-30T05:12:03Z<p>I wasn't going to answer this question but there are two answers here (that are getting voted up!) that are just plain wrong. Consider these expressions:</p>
<pre><code>String a = "a" + "b" + "c";
String b = System.getProperty("blah") + "b";
</code></pre>
<p>The first is evaluated at <strong>compile-time</strong>. The second is evaluated at <strong>run-time</strong>.</p>
<p>So <strong>never</strong> replace constant concatenations (of any type) with StringBuilder, StringBuffer or the like. Only use those where variables are invovled and generally only when you're appending a lot of operands or you're appending in a loop.</p>
<p>If the characters are constant, this is fine:</p>
<pre><code>String s = "" + 'a' + 'b' + 'c';
</code></pre>
<p>If however they aren't, consider this:</p>
<pre><code>String concat(char... chars) {
if (chars.length == 0) {
return "";
}
StringBuilder s = new StringBuilder(chars.length);
for (char c : chars) {
s.append(c);
}
return s.toString();
}
</code></pre>
<p>as an appropriate solution.</p>
<p>However some might be tempted to optimise:</p>
<pre><code>String s = "Name: '" + name + "'"; // String name;
</code></pre>
<p>into this:</p>
<pre><code>String s = new StringBuilder().append("Name: ").append(name).append("'").toString();
</code></pre>
<p>While this is well-intentioned, the bottom line is <strong>DON'T</strong>.</p>
<p>Why? As another answer correctly pointed out: the compiler does this for you. So in doing it yourself, you're not allowing the compiler to optimise the code or not depending if its a good idea, the code is harder to read and its unnecessarily complicated.</p>
<p><strong>For low-level optimisation the compiler is better at optimising code than you are.</strong></p>
<p>Let the compiler do its job. In this case the worst case scenario is that the compiler implicitly changes your code to exactly what you wrote. Concatenating 2-3 Strings might be more efficient than constructing a StringBuilder so it might be better to leave it as is. The compiler knows whats best in this regard.</p>
http://stackoverflow.com/questions/328249/how-to-concatenate-characters-in-java/328531#3285311Answer by Dennis Cheung for How to concatenate characters in java?Dennis Cheung2008-11-30T06:33:59Z2008-11-30T06:33:59Z<p>You can use the String constructor.</p>
<pre><code>System.out.println(new String(new char[]{a,b,c}));
</code></pre>
http://stackoverflow.com/questions/328249/how-to-concatenate-characters-in-java/1370495#13704951Answer by truman for How to concatenate characters in java?truman2009-09-02T22:32:18Z2009-09-02T22:32:18Z<p>public class initials {</p>
<pre><code>public static void main (String [] args) {
char initialA = 'M';
char initialB = 'P';
char initialC = 'T';
System.out.println("" + initialA + initialB + initialC );
}
</code></pre>
<p>}</p>