Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Why doesn't C++ return the right value reference ​ obtained from the local variable using std:move

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the knowledge of "Why C++ should not return to the right reference obtained from local variables using std:move". Many people will encounter such a dilemma in the operation of actual cases, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

F.48 do not return right-value references obtained from local variables using std:move

Reason (reason)

Currently, explicit use of std::move in return statements is almost the worst way to ensure that copy actions are omitted.

Translator's note: copy elision is called copy ellipsis or translation of "omitting unnecessary copies", which is a very important optimization technique.

Example, bad (negative example) SF () {S result; return std::move (result);}

Translator's note: the use of std::move to forcibly avoid copy actions is not recommended.

Example, good (good example) SF () {S result; return result;} translator's note: the latter takes advantage of the return value optimization (Return value optimization, abbreviated to RVO) function, which is a compilation optimization technique of C++.

Enforcement (implementation recommendations)

This guideline should be enforced and instrumented.

That's all for "Why doesn't C++ return the right reference from a local variable using std:move?" Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report