gpt4 book ai didi

c++ - 如何检查是否设置了 std::string?

转载 作者:IT老高 更新时间:2023-10-28 13:21:21 25 4
gpt4 key购买 nike

如果使用 char*,我可以将其初始化为 NULL,然后通过比较来检查它是否已设置。如何为 std::string 做同样的事情?如何检查字符串是否设置?

编辑: 如果我设置的字符串也是空的怎么办?我是否必须使用附加标志来检查 std::string 是否已设置?

最佳答案

使用empty():

std::string s;

if (s.empty())
// nothing in s

关于c++ - 如何检查是否设置了 std::string?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3903587/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com