gpt4 book ai didi

c - 如何在堆上初始化结构的 const 成员

转载 作者:太空狗 更新时间:2023-10-29 16:20:36 26 4
gpt4 key购买 nike

我想在堆上分配一个结构,初始化它并从一个函数返回一个指向它的指针。我想知道在这种情况下是否有办法初始化结构的 const 成员:

#include <stdlib.h>

typedef struct {
const int x;
const int y;
} ImmutablePoint;

ImmutablePoint * make_immutable_point(int x, int y)
{
ImmutablePoint *p = (ImmutablePoint *)malloc(sizeof(ImmutablePoint));
if (p == NULL) abort();
// How to initialize members x and y?
return p;
}

我是否应该由此得出结论,不可能在包含 const 成员的堆上分配和初始化结构?

最佳答案

像这样:

ImmutablePoint *make_immutable_point(int x, int y)
{
ImmutablePoint init = { .x = x, .y = y };
ImmutablePoint *p = malloc(sizeof *p);

if (p == NULL) abort();
memcpy(p, &init, sizeof *p);

return p;
}

(请注意,与 C++ 不同,在 C 中不需要转换 malloc 的返回值,并且它通常被认为是错误的形式,因为它可以隐藏其他错误)。

关于c - 如何在堆上初始化结构的 const 成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2219001/

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