在C++中,std::stack
是一個容器適配器,它提供了后進先出(LIFO)的數據結構。要判斷一個std::stack
對象是否為空,你可以使用其成員函數empty()
。
以下是一個簡單的示例:
#include <iostream>
#include <stack>
int main() {
std::stack<int> s;
if (s.empty()) {
std::cout << "Stack is empty." << std::endl;
} else {
std::cout << "Stack is not empty." << std::endl;
}
return 0;
}
在這個示例中,我們創建了一個空的std::stack<int>
對象s
,然后使用empty()
函數檢查它是否為空。如果empty()
返回true
,則棧為空;否則,棧不為空。