默认情况下,std::stack<int> 使用 STL 向量作为其底层集合类。这个“堆栈”支持理论操作 push(123)、pop() 和窥视(名为 top())。
std::stack<int>
push(123)
pop()
top()
有关堆栈的更多信息(包括交互式示例)