迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > C++ >

在 C++ 中检查字符串是否为空

作者:迹忆客 最近更新:2023/04/08 浏览次数:

本文将介绍关于如何在 C++ 中检查空字符串的多种方法。


使用内置方法 empty() 来检查 C++ 中的字符串是否为空

std::string 类有一个内置的方法 empty() 来检查给定的字符串是否为空。这个方法的类型是 bool,当对象不包含字符时返回 trueempty() 方法不接受任何参数,并实现了一个恒时复杂度函数。

请注意,即使字符串被初始化为空字符串字面–"",该函数仍然返回 true 值。因此,empty() 函数检查字符串的大小,并本质上返回表达式的评估值-string.size() == 0

#include <iostream>
#include <string>
#include <cstring>

using std::cout; using std::endl;
using std::cin; using std::string;

int main() {
    string string1("This is a non-empty string");
    string string2;

    string1.empty() ?
        cout << "[ERROR] string is empty!" << endl :
        cout << "string value: " << string1 << endl;

    string2.empty() ?
        cout << "[ERROR] string is empty!" << endl :
        cout << "string value: " << string1 << endl;

    return EXIT_SUCCESS;
}

输出:

string value: This is a non-empty string
[ERROR] string is empty!

在 C++ 中使用自定义定义的 size 函数检查字符串是否为空

前一种方法可以由用户定义的函数来实现,该函数接受一个 string 参数并检查其是否为空。这个函数将反映 empty 方法的行为,并返回一个 bool 值。下面的例子演示了使用自定义函数 checkEmptyString 的相同代码示例。请注意,该函数只包含一条语句,因为比较表达式的返回类型将是布尔值,我们可以直接将其传递给 return 关键字。

#include <iostream>
#include <string>
#include <cstring>

using std::cout; using std::endl;
using std::cin; using std::string;

bool checkEmptyString(const string &s)
{
    return s.size() == 0;
}

int main() {
    string string1("This is a non-empty string");
    string string2;

    checkEmptyString(string1) ?
        cout << "[ERROR] string is empty!" << endl :
        cout << "string value: " << string1 << endl;

    checkEmptyString(string2) ?
        cout << "[ERROR] string is empty!" << endl :
        cout << "string value: " << string1 << endl;

    return EXIT_SUCCESS;
}

输出:

string value: This is a non-empty string
[ERROR] string is empty!

使用 strlen() 函数检查 C++ 中的字符串是否为空

strlen() 函数是 C 字符串库的一部分,可以用来检索字符串的字节大小。对于代码库中可能出现的 stringchar*类型的字符串,这种方法可以更加灵活。strlen 接受 const char*参数,并计算出不包括终止符 \0 的长度。

请注意,该程序的结构与前面的方法类似,因为我们定义了一个单独的布尔函数,并将其唯一的参数声明为 const char*

#include <iostream>
#include <string>
#include <cstring>

using std::cout; using std::endl;
using std::cin; using std::string;

bool checkEmptyString(const char *s)
{
    return strlen(s) == 0;
}

int main() {
    string string1("This is a non-empty string");
    string string2;

    checkEmptyString(string1.data()) ?
        cout << "[ERROR] string is empty!" << endl :
        cout << "string value: " << string1 << endl;

    checkEmptyString(string2.data()) ?
        cout << "[ERROR] string is empty!" << endl :
        cout << "string value: " << string1 << endl;

    return EXIT_SUCCESS;
}

输出:

string value: This is a non-empty string
[ERROR] string is empty!

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

Arduino 中停止循环

发布时间:2024/03/13 浏览次数:444 分类:C++

可以使用 exit(0),无限循环和 Sleep_n0m1 库在 Arduino 中停止循环。

Arduino 复位

发布时间:2024/03/13 浏览次数:315 分类:C++

可以通过使用复位按钮,Softwarereset 库和 Adafruit SleepyDog 库来复位 Arduino。

Arduino 的字符转换为整型

发布时间:2024/03/13 浏览次数:181 分类:C++

可以使用简单的方法 toInt()函数和 Serial.parseInt()函数将 char 转换为 int。

Arduino 串口打印多个变量

发布时间:2024/03/13 浏览次数:381 分类:C++

可以使用 Serial.print()和 Serial.println()函数在串口监视器上显示变量值。

Arduino if 语句

发布时间:2024/03/13 浏览次数:123 分类:C++

可以使用 if 语句检查 Arduino 中的不同条件。

Arduino ICSP

发布时间:2024/03/13 浏览次数:214 分类:C++

ICSP 引脚用于两个 Arduino 之间的通信以及对 Arduino 引导加载程序进行编程。

使用 C++ 编程 Arduino

发布时间:2024/03/13 浏览次数:127 分类:C++

本教程将讨论使用 Arduino IDE 在 C++ 中对 Arduino 进行编程。

Arduino 中的子程序

发布时间:2024/03/13 浏览次数:168 分类:C++

可以通过在 Arduino 中声明函数来处理子程序。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便