在下面的代码中,我需要获取std::array
函数参数的大小。我更喜欢std::array
,std::vector
因为容器的大小不应该改变。但是,编译器抱怨为error: ‘n’ is not a constant expression
. 如何通过函数参数获取数组的大小?
主.cpp:
#include <iostream>
#include <array>
using namespace std;
void fnc(const int n)
{
array<int,n> a;
}
int main()
{
fnc(5);
return 0;
}