gpt4 book ai didi

c++ - stdlib 中的 _countof 损坏 : why?

转载 作者:太空宇宙 更新时间:2023-11-04 00:44:14 25 4
gpt4 key购买 nike

我有一个奇怪的问题。在一个非常简单的示例中(是 c,不是 c++):

int test[3];
auto n = _countof(test);

我有错误 E0304:

Severity Code Description Project File Line Suppression State Error (active) E0304 no instance of function template "__countof_helper" matches the argument list

我在 visual studio 15.6.7 中没有这个,它出现在 15.7 更新中。工具集没有明确更改,它仍然是:

platform toolset: Visual Studio 2017 (v141)

发生了什么事?我该如何解决这个问题?

最佳答案

使用std::size相反:

#include <iterator>
int main()
{
int x[3];
auto const xs{::std::size(x)};
}

切换到 std::arraystd::vector 或兼容的包装器后无需更改:

::std::array<int, 3> ax{};
auto const axs{::std::size(ax)};
::std::vector<int> vx{0, 0, 0};
auto const vxs{::std::size(vx)};

关于c++ - stdlib 中的 _countof 损坏 : why?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50221288/

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