gpt4 book ai didi

c++ - 使用变量初始化缓冲区数组的长度

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

我正在从套接字读取缓冲区字节,但我不知道如何使用长度信息初始化缓冲区数组。

uint32_t len;
int lengthbytes = 0;
int databytes = 0;

// receive the length info of an image data
lengthbytes = recv(clientSocket, (char *)&len, sizeof(len), 0);

// convert hexadecimal data to length in bytes
len = ntohl(len);

// ????? how to initialize the buffer array with the length info ????
char buf[len]; -----> this is illegal in C

// read the image data
databytes = recv(clientSocket, buf, sizeof(buf), 0);

最佳答案

len = ntohl(len);
char buf[len]; //----> this is illegal in C

这在 C99 中有效,称为可变长度数组。如果您不使用 C99,请使用 malloc 分配数组(并将 buf 声明为 char *)。

关于c++ - 使用变量初始化缓冲区数组的长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15324438/

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