请考虑以下代码:
class A
{
public:
void GoImpl() { cout << "A"; }
};
class B
{
public:
void GoImpl() { cout << "B"; }
};
template <class... Mixins>
class Foo : public Mixins...
{
public:
void Go()
{
int temp[] = { 0, (Mixins::GoImpl(), 0)... };
}
};
int main()
{
Foo<A, B> foo;
foo.Go(); // ERROR: illegal call of non-static member function
return 0;
}
这在GCC
或clang中编译得很好,但在Visual Studio 2017
中失败了:
错误C2352:'A :: GoImpl':非静态成员函数的非法调用
我没有找到任何具体的信息。这只是编译器中的一个错误(或未实现的功能),还是有一些我错过的伏都教?你能建议任何解决方法吗?我特意试图在每个基类上调用基类函数。
答案 0 :(得分:0)
作为解决方案,请尝试
PreparedStatement
或
int temp[] = { 0, (this->Mixins::GoImpl(), 0)... };