std::stack::empty
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
bool empty() const; |
||
基础容器的检查,如果有任何元素,即是否c.empty().
原文:
Checks if the underlying container has no elements, i.e. whether c.empty().
目录 |
[编辑] 参数
(无)
[编辑] 返回值
true如果底层的容器是空的,false其他方式
原文:
true if the underlying container is empty, false otherwise
[编辑] 复杂性
常数
[编辑] 另请参阅
返回的元素数 (公共成员函数) |