C++中的empty()
函數用于檢查字符串是否為空。它返回一個布爾值,如果字符串為空,則返回true
,否則返回false
。
以下是empty()
函數的用法示例:
#include <iostream>
#include <string>
int main() {
std::string str1 = "Hello";
std::string str2 = "";
if (str1.empty()) {
std::cout << "str1 is empty." << std::endl;
} else {
std::cout << "str1 is not empty." << std::endl;
}
if (str2.empty()) {
std::cout << "str2 is empty." << std::endl;
} else {
std::cout << "str2 is not empty." << std::endl;
}
return 0;
}
輸出結果為:
str1 is not empty.
str2 is empty.
在上面的示例中,str1
是非空字符串,所以str1.empty()
返回false
,而str2
是空字符串,所以str2.empty()
返回true
。根據返回結果,可以采取相應的操作,如在字符串為空時執行某些邏輯。