Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
344 views
in Technique[技术] by (71.8m points)

c++ - Returning std::move(f) in std::for_each

I'm writing an implementation of standard c++ library for study.

The C++11 standard says that for_each returns std::move(f).

template <class InputIterator, class Function>
Function for_each(InputIterator first, InputIterator last, Function f);

Returns: std::move(f).

I thought that function scope local variable is move-constructed when it's returned. Should I return move(f) explicitly?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

From Josuttis 's The C++ Standard Library

You don’t have to and should not move() return values. According to the language rules, the standard specifies that for the following code

X foo ()
{
X x;
...

return x;
}

the following behavior is guaranteed:

? If X has an accessible copy or move constructor, the compiler may choose to elide the copy. This is the so-called (named) return value optimization ((N)RVO), which was specified even before C++11 and is supported by most compilers.

? Otherwise, if X has a move constructor, x is moved.

? Otherwise, if X has a copy constructor, x is copied.

? Otherwise, a compile-time error is emitted.

From §25.2.4 (for_each)

Requires:Function shall meet the requirements of MoveConstructible (Table 20). [Note:Function need not meet the requirements of CopyConstructible (Table 21).—end note]

With std::move(f) you can be guaranteed of being able to read the mutated state externally.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...