gpt4 book ai didi

c++ - 如何在 C++ 中声明 byte*(字节数组)?

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

如何在c++中声明byte*(字节数组)以及如何在函数定义中定义为参数?

当我如下声明时

函数声明:

int Analysis(byte* InputImage,int nHeight,int nWidth);

获取错误:“字节”未定义

最佳答案

C++ 中没有byte 类型。您应该在之前使用 typedef。有点像

typedef std::uint8_t byte;

在 C++11 中,或者

typedef unsigned char byte;

在 C++03 中。

关于c++ - 如何在 C++ 中声明 byte*(字节数组)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16079660/

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