在C++中,你可以使用top()
函數來獲取棧頂元素。以下是一個示例:
#include <iostream>
#include <stack>
int main() {
std::stack<int> myStack;
myStack.push(1);
myStack.push(2);
myStack.push(3);
// 獲取棧頂元素
int topElement = myStack.top();
std::cout << "棧頂元素: " << topElement << std::endl;
return 0;
}
輸出:
棧頂元素: 3