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?
|
For instance, would the compiler know to translate
to
and thus avoid the performance hit with the string concatenation? |
||||
|
|
|
Yes. This is guaranteed by the C# specification. It's in section 7.18 (of the C# 3.0 spec):
(The "requirements listed above" including the + operator applied to two constant expressions.) See also this question. |
||||
|
Just a side note on a related subject - the C# compiler will also 'optimize' multiple concatenations involving non-literals using the ' So
compiles to something equivalent to
rather than the more naive possibility:
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. |
||||
|
|
|
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. |
|||||
|
|
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. " |
|||
|
|
|
Yes - You can see this explicitly using ILDASM. Example: Here's a program that is similar to your example followed by the compiled CIL code: Note: I am using the String.Concat() function just to see how the compiler treats the two different methods of concatenation. Program
ILDASM
Notice how at IL_0001 the compiler created the constant "test this function" as opposed to how the compiler treats the String.Concat() function - which creates a constant for each of the .Concat() params, then calls the .Concat() function. |
|||
|
|
|
I had a similar question, but about VB.NET instead of C#. The simplest way of verifying this was to view the compiled assembly under Reflector. The answer was that both the C# and VB.NET compiler optimise concatenation of string literals. |
|||
|
|
|
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 :-) |
|||
|
|