gpt4 book ai didi

包含 std::list 的结构的 C++ 初始化

转载 作者:行者123 更新时间:2023-11-28 04:31:10 30 4
gpt4 key购买 nike

<分区>

我有以下问题。

检查下面的代码块,它正确地初始化了我的结构成员。

typedef struct
{
int var00;
int var01;
}struct_;

int main()
{


struct_ my_struct;
memset(&my_struct,'\0',sizeof(struct_));
return 0;
}

我现在的新结构(见下文)还包括一个 std::list。我现在要做的,在代码中保留 memset 命令?

typedef struct
{
int var00;
int var01;
std::list<int> my_list
}struct_list_included;

int main()
{


struct_list_included my_struct;
memset(&my_struct,'\0',sizeof(struct_list_included));
return 0;
}

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