作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试这样做(使用自定义类和来自 #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/
我是一名优秀的程序员,十分优秀!