我使用 decltype 作为成员函数的返回类型,但定义和声明不匹配。这是一些代码:
template<typename T>
struct A {
T x;
auto f() -> decltype(x);
};
template<typename T>
auto A<T>::f() -> decltype(x) {
return this->x;
}
int main() {}
这产生
test.cc:10:6: error: prototype for 'decltype (((A<T>*)0)->A<T>::x) A<T>::f()' does not match any in class 'A<T>'
test.cc:6:7: error: candidate is: decltype (((A<T>*)this)->A<T>::x) A<T>::f()
不同之处在于定义具有(A<T>*)0
声明具有的位置(A<T>*)this
。是什么赋予了?