c++ stack元素个数
时间: 2024-01-31 18:02:52 浏览: 65
C++ stack 和 queue 的笔记
你可以通过stack的size()成员函数获取当前栈中元素的个数。例如:
```c++
#include <iostream>
#include <stack>
using namespace std;
int main() {
stack<int> s;
s.push(1);
s.push(2);
s.push(3);
cout << "栈中元素个数为:" << s.size() << endl;
return 0;
}
```
输出结果为:
```
栈中元素个数为:3
```
阅读全文