在C ++ 11 Lambda中绑定RValue-引用

时间:2019-03-15 18:43:46

标签: c++ c++11 lambda rvalue-reference

考虑以下代码:

std::function<void()> bind_arg(int&& arg) {
    return [arg]() {
        std::cout << arg << std::endl;
    }
}

此代码是按值还是按右值引用绑定arg? (也就是说,这是否安全,或者它绑定了悬挂的参考?)

0 个答案:

没有答案