gpt4 book ai didi

c++ - C# 的 byte[,] 的 C++ 等价物是什么?

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

在 C++ 中,什么相当于 C# 的 byte[,]?我正在尝试进行转换,但我正在学习。有人可以帮忙吗?

最佳答案

您可以使用几种方法模拟它:

一种:推荐一种使用对象。制作 vector 的 vector :

std::vector <std::vector < std::uint8_t > > twoDArr;

二:不带对象的推荐方式——字节数组:

std::uint8_t arr[width][height];

(这个也适用于 C。)

三:在 C 中,这是动态分配数组的唯一选项,但在 C++ 中不推荐使用 - 只是如果你想要 C 兼容性:

const size_t w = 13;
const size_t h = 37;
uint8_t **arr = malloc(w * sizeof(arr[0]));
for (int i = 0; i < w; i++) {
arr[i] = malloc(h);
}

关于c++ - C# 的 byte[,] 的 C++ 等价物是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14015091/

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