#include<iostream>
#include<vector>
struct Empty {};
template <typename V>
void add(V&& element)
{
static_assert( std::is_rvalue_reference<V>::value, "V is not a rvalue reference");
}
int main(int argc, char *argv[])
{
add(Empty());
std::cin.ignore();
return 0;
}
我不明白为什么static_assert在这里失败,V
在这里不等于V&&
?
答案 0 :(得分:2)
V
不是rvalue-reference - decltype(element)
是(如果element
是右值)。 V
只是element
的一般类型。具体做法是:
typename std::remove_reference<decltype(element)>::type; // V