使用 gcc 编译下面的代码时,出现错误:“i”不能出现在常量表达式中。
为什么是这样?
#include <iostream>
using namespace std;
template<int p>
class C
{
public:
void test();
};
template<int p>
void C<p>::test()
{
p = 0;
}
char const *const p = "hello";
int main()
{
const int i = (int)p;
C<i> c;
}