gpt4 book ai didi

c++ - 创建一个 shared_ptr 到 int 的 vector

转载 作者:太空狗 更新时间:2023-10-29 19:57:05 26 4
gpt4 key购买 nike

正在尝试创建一个由 shared_ptr 到 int 的 vector 。

我哪里错了?谢谢。基思:^)

#include <iostream>
#include <vector>
#include <memory>

int main() {
std::vector<std::shared_ptr<int> > w;
std::vector<std::shared_ptr<int> >::iterator it_w;
w.push_back(new int(7));

std::cout << std::endl;
}

编译结果:

pickledegg> g++ -std=c++11 -o shared_ptr shared_ptr.cpp
shared_ptr.cpp:29:4: error: no matching member function for call to 'push_back'
w.push_back(new int(7));
~~^~~~~~~~~
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/vector:697:36: note:
candidate function not viable: no known conversion from 'int *' to 'const value_type' (aka
'const std::__1::shared_ptr<int>') for 1st argument
_LIBCPP_INLINE_VISIBILITY void push_back(const_reference __x);
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/vector:699:36: note:
candidate function not viable: no known conversion from 'int *' to 'value_type' (aka
'std::__1::shared_ptr<int>') for 1st argument
_LIBCPP_INLINE_VISIBILITY void push_back(value_type&& __x);
^
1 error generated.

最佳答案

std::shared_ptr<T>接受原始指针的构造函数被标记为显式。 source .您将无法调用 push_back使用原始指针,因为它不能隐式转换为 std::shared_ptr<int>这是什么push_back作为论据。解决方案是使用 emplace_back而不是 push_back或使用 std::make_shared<int> .

emplace_back匹配给 T 的构造函数之一的参数。

w.emplace_back(new int(7));

std::make_shared<int>返回 std::shared_ptr<int> 类型的对象,避免了这个问题。

w.push_back(std::make_shared<int>(7));

您可以组合这些解决方案。

#include <iostream>
#include <vector>
#include <memory>

int main(int argc, char** argv) {
std::vector<std::shared_ptr<int> > w;
std::vector<std::shared_ptr<int> >::iterator it_w;
w.emplace_back(std::make_shared<int>(7));

std::cout << std::endl;
}

编辑:作为附加说明,总是喜欢 std::make_shared<T>(...)std::shared_ptr<T>(new T(...)) .它旨在避免非常微妙的潜在内存泄漏。它还优雅地避免了你有 new 的情况。没有delete这可能会困扰一些人。

编辑 2:另外,std::make_shared<T>(...)具有性能优势,可以避免在 `std::shared_ptr(new T(...))' 中进行额外分配 see this answer .

关于c++ - 创建一个 shared_ptr 到 int 的 vector ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41578021/

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