vote up 4 vote down star
1

Hi

Is there a difference between concatenating strings with '' and ""?

For example, what is the difference between:

String s = "hello" + "/" + "world";

and

String s = "hello" + '/' + "world";

Thanks in advance.

flag

9 Answers

vote up 1 vote down

You may just look into the JDK :-)

Given two functions:

public static String concatString(String cs) {
    return "hello" + cs + "world";
}

public static String concatChar(char cc) {
    return "hello" + cc + "world";
}

after examination of the bytecode it boils down to two AbstractStringBuilder.append(String) vs. AbstractStringBuilder.append(char).

Both methods invoke AbstractStringBuilder.expandCapacity(int)) which will allocate a new char[] eventually and System.arraycopy the old content first.

Afterwards AbstractStringBuilder.append(char) just has to put the given char in the array whereas AbstractStringBuilder.append(String) has to check a few constraints and calls String.getChars(int, int, char[], int) which does another System.arraycopy of the appended string.

link|flag
vote up 4 vote down
System.out.println('a'+'b'+'c');
> 294
System.out.println("a"+"b"+"c");
> abc

What's happening here is that (char)+(char)=(int) In other words. Use "" for text to avoid surprises.

link|flag
vote up 1 vote down

You will probably find the following articles useful:

link|flag
vote up 1 vote down

Adding a char is about 25% faster than adding a one character String. Often this doesn't matter however, for example

String s = "hello" + "/" + "world";

This is converted to one String by the compiler so no String concatenation/append will occur at run-time in any case.

link|flag
vote up 2 vote down

'' is for character literals.

So you cannot do this:

"Osc" + 'ar' + "Reyes"

Because ar is not a character literal.

In your example it doesn't make much difference because

'/'

is a char literal, and

 "/"

is a String literal containing only one character.

Additionally you can use any UTF character with the following syntax

'\u3c00'

So you can also use:

"Osc" + '\u3c00' + "ar
link|flag
:-/ What's wrong with my answer – Oscar Reyes Jan 30 at 21:44
One thing you have to remember is that the unicode it converted to the character before compiling. So '\u005c' will be converted to '\' which gives a compile-error. – Peter B. Bock Jan 30 at 22:01
@Peter: Ooohh!! I didn't knew this. Thanks for the comment: class Un { String s = "Osc" + '\u005c' + "ar"; } – Oscar Reyes Jan 30 at 22:07
vote up 0 vote down

Theoretically it is quicker to add a char to a string - Java 6 seems to create StringBuffers under the covers and I remember reading on a Java Performance site that concatenating a char will be marginally quicker.

link|flag
vote up 2 vote down

"." is a String consisting of only one character. '.' is a character.

Once you concatenate them together there is no difference.

link|flag
There's a slight difference actually, it's marginally faster to append characters than single-character Strings. The difference is so minimal though that it really doesn't matter. – Esko Jan 30 at 20:33
That's true. But you could argue that telling a novice about this sort of minor issue may put them on the wrong path. :-) – Darron Jan 30 at 20:44
vote up 20 vote down

Literals enclosed in double quotes, e.g. "foo", are strings, whereas single-quoted literals, e.g. 'c', are chars. In terms of concatenation behaviour, there'll be no discernible difference.

Nevertheless, it's worth remembering that strings and chars aren't interchangeable in all scenarios, and you can't have a single-quoted string made up of multiple characters.

link|flag
To be pedantic, '\n' is an acceptable value for a char (although, strictly, that's just one char, even if represented as two). – Henrik Paul Jan 30 at 20:53
nod - I was mainly trying to point out that the two kinds of quote aren't interchangeable as they are in many other languages. – Rob Jan 30 at 21:19
vote up 6 vote down

"." is a String, '.' is a char.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.