函数在cpp中查找二维字符串数组的长度?

发布于 2025-01-04 12:34:20 字数 202 浏览 0 评论 0原文

cpp 中是否有任何内置函数可以为我提供 2d char 数组的长度

,例如 args 的函数

const char* args[] = {"412", "..7", ".58", "7.8", "32.", "6..", "351", "3.9", "985", "...", ".46"}

应返回 11

Is there any inbuilt function in cpp that can give me the length of a 2d char array

for ex, the function for args

const char* args[] = {"412", "..7", ".58", "7.8", "32.", "6..", "351", "3.9", "985", "...", ".46"}

should return 11

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

瞎闹 2025-01-11 12:34:20

我喜欢为此使用模板函数

template <typename T, std::size_t N>
std::size_t size(T(&)[N]) { return N; }

与使用 sizeof 的方法相比,优点是您不会意外地使用指针来执行此操作。

I like to use a template function for this.

template <typename T, std::size_t N>
std::size_t size(T(&)[N]) { return N; }

The advantage over an approach using sizeof is that you can't accidentally do it with a pointer.

意中人 2025-01-11 12:34:20

这将给出 args 中的元素数量:

sizeof(args) / sizeof(args[0])

This will give the number of elements in args:

sizeof(args) / sizeof(args[0])
瞄了个咪的 2025-01-11 12:34:20

在 C++11 中你可以使用:

std::end(args) - std::begin(args)

In C++11 you can use:

std::end(args) - std::begin(args)
若有似无的小暗淡 2025-01-11 12:34:20

sizeof(args) / sizeof(*args)

sizeof(args) / sizeof(*args)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文