gpt4 book ai didi

c++ - 为什么在此代码中S必须是const?

转载 作者:行者123 更新时间:2023-12-01 15:08:22 24 4
gpt4 key购买 nike

以下代码为什么不编译?它说S必须是const作为主要错误之一。

template <int S>
class Array
{
int size;
int items [S];

public:
Array(void) :size(S){}
};

void main()
{
int S= 30;
Array <5+S> array;
}

最佳答案

非类型模板参数必须为constexpr,即必须在编译时知道它们。因此,必须将S声明为constexpr int

关于c++ - 为什么在此代码中S必须是const?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57488401/

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