vote up 8 vote down star
3

For instance, would the compiler know to translate

string s = "test " + "this " + "function";

to

string s = "test this function";

and thus avoid the performance hit with the string concatenation?

flag

78% accept rate

5 Answers

vote up 18 vote down check

Yes. This is guaranteed by the C# specification. It's in section 7.18 (of the C# 3.0 spec):

Whenever an expression fulfills the requirements listed above, the expression is evaluated at compile-time. This is true even if the expression is a sub-expression of a larger expression that contains non-constant constructs.

(The "requirements listed above" including the + operator applied to two constant expressions.)

See also this question.

link|flag
Same with VB.NET I would assume, right? – Larsenal Nov 13 '08 at 23:52
Not sure - it's a language issue, not a framework one. – Jon Skeet Nov 13 '08 at 23:56
Mind if I change the question then to C#? – Larsenal Nov 14 '08 at 0:30
@DLarsen: Good call :) – Jon Skeet Nov 14 '08 at 6:19
vote up 0 vote down

I believe the answer to that is yes, but you'd have to look at what the compiler spits out ... just compile, and use reflector on it :-)

link|flag
vote up 4 vote down

Yes.

C# not only optimizes the concatenation of string literals, it also collapses equivalent string literals into constants and uses pointers to reference all references to the same constant.

link|flag
Do you have a reference for this information? – Justin Dearing Aug 26 at 13:03
Its called "String Interning", and is covered in depth in the book CLR via C#. – FlySwat Aug 30 at 18:13
vote up 2 vote down

From the horses mouth:

"Concatenation is the process of appending one string to the end of another string. When you concatenate string literals or string constants by using the + operator, the compiler creates a single string. No run time concatenation occurs. However, string variables can be concatenated only at run time. In this case, you should understand the performance implications of the various approaches. "

http://msdn.microsoft.com/en-us/library/ms228504.aspx

link|flag
vote up 6 vote down

Just a side note on a related subject - the C# compiler will also 'optimize' multiple concatenations involving non-literals using the '+' operator to a single call to a multi-parameter overload of the String.Concat() method.

So

string result = x + y + z;

compiles to something equivalent to

string result = String.Concat( x, y, z);

rather than the more naive possibility:

string result = String.Concat( String.Concat( x, y), z);

Nothing earth-shattering, but just wanted to add this bit to the discussion about string literal concatenation optimization. I don't know whether this behavior is mandated by the language standard or not.

link|flag

Your Answer

Get an OpenID
or

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