1
#include <iostream>
#include <functional>
using namespace std;
class Child;
class Parent {
public:
template <class Function, class... Args>
void f(Function&& f, Args&&... args)
{
Child *c = dynamic_cast<Child*>(this);
cout << c->n;
}
};
class Child : public Parent {
public:
int n = 0;
};
int main()
{
Parent *p = new Child();
cout << "abc";
return 0;
}
該代碼旨在從父級的模板成員函數訪問子類的成員。我想這樣做是因爲模板成員函數不能是虛擬的。我得到的錯誤是:「'孩子'是一個不完整的類型」。我如何完成這項工作?如何從父母的模板函數訪問子成員?