다음을 통해 공유


basic_string::empty

문자열 문자 포함 여부를 테스트 합니다.

bool empty( ) const;

반환 값

true 이면 문자열 개체; 문자가 포함 된 경우 false 이면 하나 이상의 문자가 있으면.

설명

멤버 함수 같습니다 크기 = = 0입니다.

예제

// basic_string_empty.cpp
// compile with: /EHsc
#include <string>
#include <iostream>

int main() {
   using namespace std;

   bool b1, b2;

   string str1 ("Hello world");
   cout << "The original string object str1 is: " << str1 << endl;
   b1 = str1.empty();
   if (b1)
      cout << "The string object str1 is empty." << endl;
   else
      cout << "The string object str1 is not empty." << endl;
   cout << endl;

   // An example of an empty string object
   string str2;
   b2 = str2.empty();
   if (b2)
      cout << "The string object str2 is empty." << endl;
   else
      cout << "The string object str2 is not empty." << endl;
}

Output

The original string object str1 is: Hello world
The string object str1 is not empty.

The string object str2 is empty.

요구 사항

헤더: <string>

네임 스페이스: std

참고 항목

참조

basic_string Class