gpt4 book ai didi

c++ - 如何从 unsigned long 转换为 void*?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:08:14 24 4
gpt4 key购买 nike

我正在尝试在具有给定文件描述符的文件的某个偏移处pwrite 一些数据。我的数据存储在两个 vector 中。一个包含 unsigned long 和其他 char

我想构建一个 void * 指向代表我的 unsigned longchar 的位序列,并将它传递给pwrite 以及累积大小。但是如何将 unsigned long 转换为 void*? (我想我可以找出字符)。这是我正在尝试做的事情:

void writeBlock(int fd, int blockSize, unsigned long offset){
void* buf = malloc(blockSize);
// here I should be trying to build buf out of vul and vc
// where vul and vc are my unsigned long and char vectors, respectively.
pwrite(fd, buf, blockSize, offset);
free(buf);
}

此外,如果您认为我的上述想法不好,我很乐意阅读建议。

最佳答案

您不能有意义地将 unsigned long 转换为 void *。前者是一个数值;后者是未指定数据的地址。大多数系统将指针实现为具有特殊类型的整数(包括您在日常工作中可能遇到的任何系统),但类型之间的实际转换被认为是有害的。

如果你想做的是将 unsigned int 的值写入你的文件描述符,你应该使用 获取值的地址 & 运算符:

unsigned int *addressOfMyIntegerValue = &myIntegerValue;
pwrite(fd, addressOfMyIntegerValue, sizeof(unsigned int), ...);

你可以遍历你的 vector 或数组,然后用它一个一个地写。或者,使用 std::vector 的连续内存功能将它们一起写入可能会更快:

std::vector<unsigned int> myVector = ...;
unsigned int *allMyIntegers = &myVector[0];
pwrite(fd, allMyIntegers, sizeof(unsigned int) * myVector.size(), ...);

关于c++ - 如何从 unsigned long 转换为 void*?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6893195/

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