gpt4 book ai didi

c++ - 在函数中传递显式字符数组?

转载 作者:太空宇宙 更新时间:2023-11-04 13:19:13 28 4
gpt4 key购买 nike

我有一个字符数组

char theArray[] = { 0xAA, 0x01, 0x27, 0x08 };

我通常像这样传递数组

我的函数(theArray)

但我还有其他几个显式数组初始化。当我尝试做一个

我的函数({ 0xAA, 0x01, 0x27, 0x08 }),

编译器说:

Error: excess elements in scalar initializer

如何直接传递我的显式数组?

最佳答案

最简单的方法是使用 std::array<unsigned char,4>而不是 char[]数组:

#include <array>

void myFunction(const std::array<unsigned char,4>& theArray) {
}

int main() {
myFunction({{ 0xAA, 0x01, 0x27, 0x08 }});
myFunction({{ 0xAA, 0x01, 0x27, 0x08 }});
}

Live Demo


为什么 unsigned char

0xAA不适合 signed char ,会出现编译错误。

为什么 const

因为您将从初始化列表中获得一个右值,所以它可以作为 const 传递仅供引用,或按值参数复制到。

关于c++ - 在函数中传递显式字符数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35941836/

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