gpt4 book ai didi

c++ - 如何将 shared_ptr 初始化为结构

转载 作者:行者123 更新时间:2023-11-30 02:33:44 25 4
gpt4 key购买 nike

我对结构有两个定义。

struct ST1               
{
int iVar1;
int iVar2;
float iVar3;
};

struct ST2
{
std::shared_ptr<ST1> p_sVar4;
};

ST2 structure2;

我尝试初始化 structure2 :

structure2.p_sVar4 = new ST1();

但这是错误的。

如何初始化structure2

最佳答案

使用 std::make_shared:

 structure2.p_sVar4 = std::make_shared<ST1>();

(通常优先于:

structure2.p_sVar4 = std::shared_ptr<ST1>(new ST1)

)

关于c++ - 如何将 shared_ptr 初始化为结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35117744/

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