gpt4 book ai didi

c++ - 在 visual studio 中使用 __LINE__ 宏作为模板参数

转载 作者:可可西里 更新时间:2023-11-01 18:17:59 25 4
gpt4 key购买 nike

我希望下面的代码可以工作,但我收到了一个编译错误:

error C2975: 'n' : invalid template argument for 'foo', expected compile-time constant expression
#include <iostream>
using namespace std;

template<int N>
struct foo
{
foo() { cout << N << endl; }
};

int main()
{
foo< __LINE__ > f;
}

为什么会这样?我虽然 __LINE__ 会在模板实例化发生之前粘贴行号?

如果我想这样做,我应该只引入一个static const int 来保存行号还是有标准的解决方案?

最佳答案

在 VS 2010 10.0.40219.1 SP1Rel 和 Ideone 中为我工作

但是 MSDN 提到了导致 C2975 的问题,如果在带有编译器选项 /ZI 的模板中使用 __LINE__:MSDN C2975

编辑:抱歉,我链接了德语版本,here in english

关于c++ - 在 visual studio 中使用 __LINE__ 宏作为模板参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5397782/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com