我试图将一个可移动的包装器设置为不可复制的,不可移动的类,但是我将一个const std::string变量传递给构造函数时遇到了问题.下面的最小示例产生以下错误:
#include <iostream>
#include <memory>
#include <string>
#include <utility>
struct X {
std::string x;
X(const std::string &x) : x(x) {}
X(const X &x) = delete;
X(X &&x) = delete;
};
struct Wrapper {
std::unique_ptr<X> x;
Wrapper(const Wrapper & wrapper) = delete;
Wrapper(Wrapper && wrapper) = default;
template<typename... Args>
Wrapper(Args&&... args) : x(std::make_unique<X>(std::forward(args)...)) {}
};
int main() {
const std::string XXX = "XXX";
Wrapper w{XXX};
std::cout << w.x->x << std::endl;
}
Run Code Online (Sandbox Code Playgroud)
错误信息:
forwarding.cc:21:53: error: no matching function for call to 'forward'
Wrapper(Args&&... args) : x(std::make_unique<X>(std::forward(args)...)) {}
^~~~~~~~~~~~
forwarding.cc:26:13: note: in instantiation of function template specialization 'Wrapper::Wrapper<const std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > &>' requested here
Wrapper w{XXX};
^
/usr/bin/../lib/gcc/x86_64-linux-gnu/7.2.0/../../../../include/c++/7.2.0/bits/move.h:73:5: note: candidate template ignored: couldn't infer template argument '_Tp'
forward(typename std::remove_reference<_Tp>::type& __t) noexcept
^
/usr/bin/../lib/gcc/x86_64-linux-gnu/7.2.0/../../../../include/c++/7.2.0/bits/move.h:84:5: note: candidate template ignored: couldn't infer template argument '_Tp'
forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
^
1 error generated.
Run Code Online (Sandbox Code Playgroud)
Vit*_*meo 14
您需要将模板参数显式传递给std::forward:
std::forward<Args>(args)...
Run Code Online (Sandbox Code Playgroud)
这是因为std::forward需要某种方式来了解"原始价值类别" args...,这通过单独的模板参数推断是不可能的,因为args它总是一个左值.
Lvalues将在转发引用的模板参数推导的上下文中推断为左值引用(作为特殊规则),因此可以通过查看内部类型来完成其工作.std::forwardArgs...