當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ String empty()用法及代碼示例


此函數檢查字符串是否為空。函數返回一個布爾值 true 或 false。

用法

考慮一個字符串 str。語法是:

str.empty();

參數

該函數不包含任何參數。

返回值

它根據條件返回一個布爾值 0 或 1。

例子1

#include<iostream>
    using namespace std;
     int main()
    {
      string str1;
     if(str1.empty())
    cout<<"String is empty";
    else
	cout<<"String is not empty";
	return 0;}

輸出:

String is empty

這個例子展示了如何使用 empty() 函數檢查字符串是否為空。

例子2

#include<iostream>
using namespace std;
int main()
{
	string str1="Hello javaTpoint";
            if(str1.empty())
	cout<<"String is empty";
	else
	cout<<"String is not empty";
	return 0;
}

輸出:

String is not empty

本示例使用 empty() 函數檢查字符串是否為空。






相關用法


注:本文由純淨天空篩選整理自 C++ String empty()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。