我刚刚学习了c++中的declval关键字,我想知道为什么在下面的代码中(std::add_rvalue_reference<Foo>::type).constFunc7() x = 3;
没有编译。decltype(declvalCustom<Foo>().constFunc7()) y = 3;
和declvalCustom
的模板声明不是一样的吗?
#include <iostream>
#include <utility>
using namespace std;
struct Foo
{
int constFunc7() { return 7; }
};
template< class T >
typename std::add_rvalue_reference<T>::type declvalCustom();
std::add_rvalue_reference<Foo> helper();
int main()
{
// decltype(helper().constFunc7()); // not working
// (std::add_rvalue_reference<Foo>::type).constFunc7() x = 3; // not working
decltype(declvalCustom<Foo>().constFunc7()) y = 3; // ok
decltype(std::declval<Foo>().constFunc7()) z = 3; // ok
return 0;
}
declval
不是关键字。std::declval
是一个函数模板,只能合法地出现在未求值的上下文中。您的declValCustom
也是一个具有类似属性的函数模板。
std::add_rvalue_reference<Foo>::type
是一个类型,而不是表达式,因此不能将其用作子表达式。