No difference. In both cases a new string object is created (1 - implicitly, 2 - explicitly).
Both examples do the following:
1. Push pointer of the empty string to the stack (or write it to the register).
2. Create new instance of string class (with specified string).
3. Write pointer of newly created instance to EAX (as the result)
My apologies, this is C++ question whereas I thought about C# :)
That means the instance of string class will be duplicated (not returned by pointer). Anyway, both examples create only one instance of string class (1 - implicitly, 2 - explicitly), then all bytes of this instance (temporary object) will be pushed to the stack as the result.
The answer: no difference, only one temporary object (provided no compiler optimization applied).
NOTE: in both cases compiler allocates the same number of bytes in the stack to store the instance of string class, and the "" (empty string) is already loded to the memory (no allocation). The only difference is that 1st example creates an instance of string class implicitly.
string, you could try it with a class of your own, which would inform you every time one got created or destroyed. – Beta Jun 12 '11 at 15:38