zoukankan      html  css  js  c++  java
  • QString isNull() isEmpty() QList count() size() length()

    1、QString isNull()  isEmpty()

    举例说明:

        QString str1;
        if(str1.isNull())
        {
            qDebug()<<"str1 is Null"<<endl;
        }
        if(str1.isEmpty())
        {
            qDebug()<<"str1 is Empty"<<endl;
        }
    
        QString str2("");
        if(str2.isNull())
        {
            qDebug()<<"str2 is Null"<<endl;
        }
        if(str2.isEmpty())
        {
            qDebug()<<"str2 is Empty"<<endl;
        }

    运行结果:

     2、QList count() size() length()

    QList中这三个函数等价!

    举例说明:

        QList<int>data;
        for(int i=0;i<10;i++)
        {
            data.append(i);
        }
        qDebug()<<"size:"<<data.size()<<endl;
        qDebug()<<"length:"<<data.length()<<endl;
        qDebug()<<"count:"<<data.count()<<endl;

    运行结果:

  • 相关阅读:
    linux 命令
    linux 后门防范
    linux date
    shell 常用参数
    linux rule策略
    vlan对服务器要注意的事情
    STL vector——c++
    蛇形矩阵
    简单a+b
    小 X 与数字(ten)
  • 原文地址:https://www.cnblogs.com/ycbeginner/p/15795210.html
Copyright © 2011-2022 走看看