我有以下代码:
template <const char *p>
struct A{};
template <int i>
struct E{};
extern constexpr int i = 0;
constexpr float f = 0.f;
extern constexpr char c = 0;
int main(int argc, const char *argv[])
{
A<&c> b; //works
A<(const char *)(&i)> a; //Error: could not convert template argument ‘(const char*)(& i)’ to ‘const char*’
E<(int)f> e; //works
return 0;
}
为什么线路A<(const char *)(&i)> a;
错了?我用 g++-4.6.1 和 -std=c++0x 编译它。
编辑:正如查尔斯建议的那样,reinterpret_cast
在常量表达式中是不允许的,我将上面的代码更改为以下内容:
struct Base{};
struct Derived : public Base {};
template <const Base *p>
struct A{};
extern constexpr Base base = {};
extern constexpr Derived derived = {};
A<&base> a; //works
A<(const Base*)&derived> b; //error: could not convert template argument ‘(const Base*)(& derived)’ to ‘const Base*’
因此,不仅reinterpret_cast
是不允许的。使用A<static_cast<const base*>(&derived)
会产生相同的错误。
致@BЈовић:
A<(const Base*)(0)> b; // error: could not convert template argument ‘0u’ to ‘const Base*’