QString的isNull与isEmpty

2023-12-15 11:28:15

测试:

    QString str;
    qDebug()<<str.isEmpty();
    qDebug()<<str.isNull();
    str="";
    qDebug()<<str.isEmpty();
    qDebug()<<str.isNull();
    str="1";
    qDebug()<<str.isEmpty();
    qDebug()<<str.isNull();

结果:

true
true
true
false
false
false

总结:

字符串就这三种类型:

(1)

QString str;

是Null,也是Empty

(2)?

str="";

不是Null,是Empty。

(3)?

str="1";

?非Null,非Empty。

文章来源:https://blog.csdn.net/weixin_51883798/article/details/135012316
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。