vector::empty
벡터는 비어 있는 경우 테스트 합니다.
bool empty( ) const;
반환 값
true 이면 벡터 비어 있는 경우 false 이면 벡터 비어 있지 않은 경우.
예제
// vector_empty.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
int main( )
{
using namespace std;
vector <int> v1;
v1.push_back( 10 );
if ( v1.empty( ) )
cout << "The vector is empty." << endl;
else
cout << "The vector is not empty." << endl;
}
요구 사항
헤더: <vector>
네임 스페이스: std