gpt4 book ai didi

c++ - 如何重置 shared_ptr?

转载 作者:行者123 更新时间:2023-11-30 04:23:27 24 4
gpt4 key购买 nike

我正在尝试这样做(使用自定义类和来自 #include <memory> 的 STL shared_ptr):

shared_ptr<Label> BufLbl;

BufLbl = allocate_shared<Label>(Label());
BufLbl->YCoord = 3;
BufLbl->XCoord = 2;
BufLbl->Width = 5;
BufLbl->Data = "Day 1";
Screen.Controls.push_back(BufLbl);

BufLbl = allocate_shared<Label>(Label());
BufLbl->YCoord = 4;
BufLbl->XCoord = 6;
BufLbl->Width = 1;
BufLbl->Data = "2";
Screen.Controls.push_back(BufLbl);

<repeat>

我收到这个错误:

error C2903: 'rebind' : symbol is neither a class template nor a function template

我做错了什么?

最佳答案

你在滥用 allocate_shared,这不是你想的那样。

你需要的是make_shared,像这样:

BufLbl = std::make_shared<Label>();

关于c++ - 如何重置 shared_ptr?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13355422/

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