为什么我不能有这样的成员指针:
#include <iostream>
#include <stdlib.h> /* malloc, free, rand */
using namespace std;
class Pool{};
struct FE{
static Pool pool;
};
Pool FE::pool;
int main() {
Pool FE::* pmd = &FE::pool;
return 0;
}
我做错了什么?