• QVariant类


    QVariant类:
     1 #include "widget.h"
     2 #include <QApplication>
     3 #include <QDebug>
     4 
     5 int main(int argc, char *argv[])
     6 {
     7     QApplication a(argc, argv);
     8     QVariant v(709);
     9     qDebug()<<v.toInt();
    10 
    11     QVariant w("How are you! ");
    12     qDebug()<<w.toString();
    13 
    14     QMap<QString,QVariant>map;
    15 
    16     map["int"]=709;
    17     map["double"]=709.709;
    18     map["string"]="How are you! ";
    19 
    20     QColor c = QColor(255,0,0);
    21     map["color"]=(c);
    22 
    23     qDebug()<<map["int"]<< map["int"].toInt();
    24     qDebug()<<map["double"]<< map["double"].toDouble();
    25     qDebug()<<map["string"]<< map["string"].toString();
    26 
    27     qDebug()<<map["color"]<< map["color"].value<QColor>();
    28     /*
    29      * map["color"]是一个QVariant对象,QVariant中没有提供转换QColor对象的方法
    30      * 但是提供了 value模板方法来取得存放的任意类型数据:
    31      * inline T value() const
    32      * 也就是说 value是一个统用的方法(都叫模板了...)
    33      * qDebug()<<map["int"]<< map["int"].toInt(); 等效于:
    34      * qDebug()<<map["int"]<< map["int"].value<int>();
    35      * 既然有了value方法了,为什么还要定义toInt方法? 猜想原因:
    36      * 1、效率,可能toInt方法更加高效取得数据。
    37      * 2、统一,其他类都有toInt方法,这里没有的话,有点不好意思吧
    38      */
    39 
    40     QStringList sl;  //定义字符串列表
    41     /*
    42      * class QStringList : public QList<QString>
    43      */
    44     sl<<"A"<<"B"<<"C"<<"D";
    45 
    46     QVariant slv(sl);//slv中存放的是字符串列表
    47 
    48     if(slv.type()==QVariant::StringList)
    49     {
    50         QStringList list=slv.toStringList(); //取出QVariant对象中的数据——字符串列表
    51         for(int i=0;i<list.size();++i)
    52             qDebug()<<list.at(i); //列表中的项
    53     }
    54 
    55     return 0;
    56 }
    内在的趣味,表面的繁琐
  • 相关阅读:
    Why use strong named assemblies?
    Dependency Walker
    “等一下,我碰!”——常见的2D碰撞检测
    MOBA游戏的网络同步技术
    VS2017如何配置openGL环境
    UE4关于Oculus Rift (VR)开发忠告
    UE4 的json读写方式
    Blueprint 编译概述
    UE4编码规范
    Unreal Enginer4特性介绍
  • 原文地址:https://www.cnblogs.com/data1213/p/10745107.html
Copyright © 2020-2023  润新知