gpt4 book ai didi

c++ - 字节数组中的项目数

转载 作者:太空狗 更新时间:2023-10-29 19:40:02 26 4
gpt4 key购买 nike

我有以下 C++ 数组:

byte data[] = {0xc7, 0x05, 0x04, 0x11 ,0x45, 0x00, 0x00, 0x00, 0x00, 0x00};

我怎么知道这个数组中有多少项?

最佳答案

对于字节大小的元素,可以使用sizeof(data)

更一般地,sizeof(data)/sizeof(data[0]) 将给出元素的数量。


由于这个问题出现在你的上一个问题中,我将澄清当你将数组作为参数传递给函数时不能使用 this:

void f(byte arr[])
{
//This always prints the size of a pointer, regardless of number of elements.
cout << sizeof(arr);
}

void g()
{
byte data[] = {0xc7, 0x05, 0x04, 0x11 ,0x45, 0x00, 0x00, 0x00, 0x00, 0x00};
cout << sizeof(data); //prints 10
}

关于c++ - 字节数组中的项目数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2077068/

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