Yes, it will be moved correctly, as the std::string constructor supports std::move, the return value of create_complex_str() is a pure rvalue which can be safely move'd. In fact, std::move will automatically be called even if you don't do it yourself (put a break point and see) - unless even further optimizations can be performed. But if you call std::move yourself, you might stop the compiler from further optimizing via copy elision/RVO, etc.
The compiler will eliminate unnecessary copies for you, where applicable. Just write your code (don't fall victim to early optimization!) to do what you want it to do in a way that makes it clear to the compiler what logical outcome your code should have, and let it worry about the optimization. Cases like this have been heavily studied, documented, and optimized for by all compilers.
If and when in the future you need more-performant code, you should first profile and find exactly where the bottleneck is (it's usually not where you think it might be), and then and only then set about using hackery to get it to work faster/better.
moveis unnecessary. – Seth Carnegie Feb 11 at 1:06create_complex_strreturns by value and that value is an xvalue at the point you constructm_complex_strwith it. Also, having themovethere might prevent a compiler optimisation called RVO, so themoveis not only unnecessary but harmful. – Seth Carnegie Feb 11 at 1:08create_complex_stra static member function. – aschepler Feb 11 at 1:10create_complex_str()is a prvalue andstd::move(create_complex_str())is an xvalue. But both allow the move constructor. – aschepler Feb 11 at 1:12