gpt4 book ai didi

c++ - 打印字符串数组长度而不是 C++ 中的数组项数

转载 作者:太空宇宙 更新时间:2023-11-04 16:17:26 26 4
gpt4 key购买 nike

我尝试了这个数组声明并检查了大小:

string path1[1] = {"D:\\Users\\user-pc\\Desktop\\testing\\inputs\\xml_source_example.xml"};
cout << path1->length();

并检查尺寸:

62

我希望输出为 1,所以我尝试使用 ->size(),但我仍然得到 62。我知道数组中第一项的长度为 62,但我想要数组中的项数。

如何获取数组中有多少项?

最佳答案

试试这个,利用 std::beginstd::end:

std::end(path1) - std::begin(path1);

或者,您可以创建自己的数组大小函数:

#include <cstddef> // for std::size_t

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

用法:

#include <iostream>

int main()
{
int a[42];
std::cout << size(a) << std::endl;
}

关于c++ - 打印字符串数组长度而不是 C++ 中的数组项数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21184873/

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