Copy std::stack into an std::vector(将 std::stack 复制到 std::vector)
问题描述
标准是否保证以下代码可以工作(假设 st 不为空)?
Is the following code guaranteed by the standard to work(assuming st is not empty)?
#include <vector>
#include <stack>
int main()
{
extern std::stack<int, std::vector<int> > st;
int* end = &st.top() + 1;
int* begin = end - st.size();
std::vector<int> stack_contents(begin, end);
}
推荐答案
是的.
std::stack 只是一个容器适配器.
std::stack is just a container adapter.
可以看到.top()其实是(§23.3.5.3.1)
You can see that .top() is actually (§23.3.5.3.1)
reference top() { return c.back(); }
其中 c 是容器,在本例中是 std::vector
Where c is the container, which in this case is a std::vector
也就是说你的代码基本翻译成:
Which means that your code is basically translated into:
extern std::vector<int> st;
int* end = &st.back() + 1;
int* begin = end - st.size();
std::vector<int> stack_contents(begin, end);
并且由于 std::vector 保证是连续的,所以应该没有问题.
And as std::vector is guaranteed to be continuous there should be no problem.
但是,这并不意味着这是一个好主意.如果您需要像这样使用hacks",这通常表明设计不佳.您可能想从一开始就使用 std::vector.
However, that does not mean that this is a good idea. If you need to use "hacks" like this it is generally an indicator of bad design. You probably want to use std::vector from the beginning.
这篇关于将 std::stack 复制到 std::vector的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 std::stack 复制到 std::vector
基础教程推荐
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- CString 到 char* 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
