阅读量:0
在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
,则栈为空;否则,栈不为空。