我正在尝试执行此操作(使用自定义类和#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/

10-11 23:18