gpt4 book ai didi

c++ - memcpy 这对我来说真的没有意义

转载 作者:行者123 更新时间:2023-11-30 00:40:31 26 4
gpt4 key购买 nike

我有一些使用 boost::asio 的套接字连接代码,它从套接字读取前 5 个字符,从中它可以确定发送的字符串是否使用 zlib 库压缩。我目前正在做的项目是对现有内容的重写,所以我采用了一些现有代码并使其更像 C++,而不是 C。但是在代码中它调用了 memcpy ,这对我来说似乎完全是多余的,但是如果不存在该调用,则永远不会调用对 async_read 的调用,这是我没有得到的。为什么?此 memcpy 调用的目的是什么?为什么它需要存在于所有指标中?

/*check for zlib compression and then call handle_read_s which gets the rest of the data and decompresses if necessary.*/
/// buff is a vector<char>
/// tempbuff is a char[5]
void tcp_connection::handle_read(const boost::system::error_code& err, size_t bytes_transferred, endpoint_ptr ptr)
{
unsigned long maxsz = 1024; //0xffffffff;
size_t size = 1024;
b_zlib = false;

if (!err || err == boost::asio::error::message_size)
{
if (bytes_transferred >= 4)
{
if (tempbuff[0] == 'Z')
b_zlib = true;

//Remove 4 bytes & remove memcpy
memcpy(&maxsz, &tempbuff[1], 4); //removing this makes my code unworkable, I don't get it?
buff.resize(maxsz); //passing anything else here also kills it?!!
boost::asio::async_read(socket_, boost::asio::buffer(buff), boost::bind(&tcp_connection::handle_read_s, shared_from_this(), boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred, ptr));
}
}

}

最佳答案

此代码告诉您所需缓冲区的大小。

memcpy(&maxsz, &tempbuff[1], 4);

这段代码正在调整你的缓冲区大小

buff.resize(maxsz);

关于c++ - memcpy 这对我来说真的没有意义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5867035/

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