gpt4 book ai didi

c++ - 分配 const gchar * 时遇到问题

转载 作者:行者123 更新时间:2023-11-28 08:09:05 27 4
gpt4 key购买 nike

我似乎无法弄清楚我在这里做错了什么
我的结构:

struct listItem {const gchar *name,*val1,*val2,*val3;};

然后我会这样做:

listItem *temp;
const gchar *b1 = (const gchar *) (gtk_entry_buffer_get_text(GTK_ENTRY_BUFFER(obgect->b1)));

一切正常,但我在这里遇到了段错误:

temp->name = b1;

对不起,我太烂了

最佳答案

您需要为 temp 分配存储空间,例如:

listItem temp;
temp.name = b1;

关于c++ - 分配 const gchar * 时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9551974/

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