C++ quot;move fromquot; container(C++“移出容器)
问题描述
在 C++11 中,当我们想要将值移动(破坏性复制)到容器中时,我们可以使用 std::move 来提高效率:
In C++11, we can get an efficiency boost by using std::move when we want to move (destructively copy) values into a container:
SomeExpensiveType x = /* ... */;
vec.push_back(std::move(x));
但我找不到任何相反的方向.我的意思是这样的:
But I can't find anything going the other way. What I mean is something like this:
SomeExpensiveType x = vec.back(); // copy!
vec.pop_back(); // argh
这在适配器的 stack 上更为频繁(复制弹出).这样的事情是否存在:
This is more frequent (the copy-pop) on adapter's like stack. Could something like this exist:
SomeExpensiveType x = vec.move_back(); // move and pop
为了避免复制?这已经存在了吗?我在n3000中找不到类似的东西.
To avoid a copy? And does this already exist? I couldn't find anything like that in n3000.
我有一种感觉我错过了一些非常明显的东西(比如它的不必要性),所以我为ru dum"做好了准备.:3
I have a feeling I'm missing something painfully obvious (like the needlessness of it), so I am prepared for "ru dum". :3
推荐答案
我可能完全错了,但这不是你想要的
I might be total wrong here, but isn't what you want just
SomeExpensiveType x = std::move( vec.back() ); vec.pop_back();
假设 SomeExpensiveType 有一个移动构造函数.(对于您的情况显然是正确的)
Assuming SomeExpensiveType has a move constructor. (and obviously true for your case)
这篇关于C++“移出"容器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++“移出"容器
基础教程推荐
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 常量变量在标题中不起作用 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 这个宏可以转换成函数吗? 2022-01-01
