0

我正在制作一个必须为某种类型分配内存的程序,它必须存储数据的大小以及我传递给它的数据的大小。因此,如果我分配 8 个字节,我需要将内存大小存储在前 4 个字节中,并将剩余大小存储在其他 4 个字节中。我认为这被称为有标题,但我对 C 还是很陌生。我现在所拥有的只是分配的空间,我如何在其中存储值?

int * mem_start_ptr; //pointer to start off memory block
    int data; 
    data = &mem_start_ptr; 
    mem_start_ptr = (long *)malloc(sizeof(long)); //reserver 8 bytes
4

1 回答 1

0

首先,sizof(long)是特定于实现的,在 64 位 Linux 上是 8 个字节,而在 Windows 和 32 位 Linux 上是 4 个字节,AFAIK。malloc(8)如果您想显式分配 8 个字节,请使用。虽然,既然你想存储int,看来,使用malloc(sizeof(*mem_start_ptr)). 另外,不要强制转换 的返回值malloc,它在 C 中是多余的,甚至可以隐藏错误。现在,要存储这两个 4 字节值:

/* for the first one. Let's use 42 */
*mem_start_ptr = 42;
/* for the second one. Let's put the value of of some variable here */
*(mem_start_ptr + 1) = int_variable;

你应该阅读指针算法。也可能关于数组。谷歌是你的朋友。另外,不知道您的代码中的这部分是做什么用的。因为它没有做你可能期望它做的事情

int data;
data = &mem_start_ptr

最后,我会像这样重写您的代码:

int *mem_start_ptr;
mem_start_ptr = malloc(sizeof(*mem_start_ptr));
*mem_start_ptr = your_1st_4bytes;
*(mem_start_ptr + 1) = your_2nd_4bytes;

不再需要后不要忘记free()它。另外,我没有在这里拍摄,但也不要忘记检查NULL,因为malloc()失败时返回。

再一次 - 阅读指针算术。谷歌是你的朋友;]

于 2013-02-04T23:23:46.913 回答