扩展阅读
当前位置: 编程语言>c/c++
C++ Lists(链表) 成员 empty():如果list是空的则返回true
发布时间:2014-1-19
本文导语: C++ Lists(链表) 成员 empty():如果list是空的则返回true
empty
语法:
bool empty();
empty()函数返回真(true)如果链表为空,否则返回假。例如:
list the_list;
for( int i = 0; i < 10; i++ )
the_list.push_back( i );
while( !the_list...