码迷,mamicode.com
首页 > 其他好文 > 详细

QMap

时间:2016-12-17 20:16:10      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:exec   include   exe   key   .exe   employee   map   for   ica   

#include <QCoreApplication>
#include<QMap>
#include<QDebug>

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);
    QMap<int,QString> Employees;
    Employees.insert(1,"Bob");
    Employees.insert(2,"Cat");
    Employees.insert(3,"Boat");
    Employees.insertMulti(1,"mmm");

    foreach(int i, Employees.keys())
    {
        qDebug() << Employees[i];
    }

    QMapIterator<int,QString> Iter(Employees);
    while(Iter.hasNext())
       {
        Iter.next();
        qDebug() << Iter.key()<<" "<<Iter.value();
    }

    return a.exec();
}

  

QMap

标签:exec   include   exe   key   .exe   employee   map   for   ica   

原文地址:http://www.cnblogs.com/my-cat/p/6192884.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!