迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > 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 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

在 C++ 中通过掷骰子生成随机值

发布时间:2023/04/09 浏览次数:169 分类:C++

本文解释了如何使用时间因子方法和模拟 C++ 中的掷骰子的任意数方法生成随机数。了解它是如何工作的以及它包含哪些缺点。提供了一个 C++ 程序来演示伪数生成器。

在 C++ 中使用模板的链表

发布时间:2023/04/09 浏览次数:158 分类:C++

本文解释了使用模板在 C++ 中创建链表所涉及的各个步骤。工作程序演示了一个链表,该链表使用模板来避免在创建新变量时声明数据类型的需要。

在 C++ 中添加定时延迟

发布时间:2023/04/09 浏览次数:142 分类:C++

本教程将为你提供有关在 C++ 程序中添加定时延迟的简要指南。这可以使用 C++ 库为我们提供的一些函数以多种方式完成。

在 C++ 中创建查找表

发布时间:2023/04/09 浏览次数:155 分类:C++

本文重点介绍如何创建查找表及其在不同场景中的用途。提供了三个代码示例以使理解更容易,并附有代码片段以详细了解代码。

如何在 C++ 中把字符串转换为小写

发布时间:2023/04/09 浏览次数:63 分类:C++

介绍了如何将 C++ std::string 转换为小写的方法。当我们在考虑 C++ 中的字符串转换方法时,首先要问自己的是我的输入字符串有什么样的编码

如何在 C++ 中确定一个字符串是否是数字

发布时间:2023/04/09 浏览次数:163 分类:C++

本文介绍了如何检查给定的 C++ 字符串是否是数字。在我们深入研究之前,需要注意的是,以下方法只与单字节字符串和十进制整数兼容。

扫一扫阅读全部技术教程

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

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便