Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
std::array
的第二个模板参数是size_t
,而不是int
。此外,
return output;
需要为return Output;
,因为 C++ 区分大小写。The 2nd template argument of
std::array
is asize_t
, not anint
.Also,
return output;
needs to bereturn Output;
as C++ is case-sensitive.