我正在尝试获取一些最初使用 GCC 构建的代码以使用 MSVC 进行编译,并且在代码中遇到了回调包装类的问题。我提取了以下代码的关键部分:
template <typename T_func>
struct internal_parameter_resolver;
template <typename R>
struct internal_parameter_resolver<R()> {
typedef R(*type)();
};
template <typename R, typename P1>
struct internal_parameter_resolver<R(P1)> {
typedef R(*type)(P1);
};
template <typename T_func, typename internal_parameter_resolver<T_func>::type func>
void bind() {
// Create and return instance of class Callback...
}
double func1() { return 0.5; }
int func2(double i) { return 0; }
int main() {
bind<double(), &func1>(); // (Line 23)
bind<int(double), &func2>(); // (Line 24)
return 0;
}
虽然这在 GCC 下编译得很好,但 MSVC 2010 给出了以下错误消息:
1>c:\users\public\documents\projects\_test\_test\main.cpp(23): error C2975: 'func' : invalid template argument for 'bind', expected compile-time constant expression
1> c:\users\public\documents\projects\_test\_test\main.cpp(14) : see declaration of 'func'
1>c:\users\public\documents\projects\_test\_test\main.cpp(24): error C2975: 'func' : invalid template argument for 'bind', expected compile-time constant expression
1> c:\users\public\documents\projects\_test\_test\main.cpp(14) : see declaration of 'func'
有人知道为什么 MSVC 认为这些函数指针不是编译时常量吗?还是代码中其他地方的问题(即不是第 23 和 24 行)?如果它是编译器中的错误,我会欢迎任何有关可能解决方法的建议。
谢谢!