QMap使用
本文标题:QMap使用 本文地址:https://www.techieliang.com/2017/12/537/
1. 简单范例
QMap与std::map相同,会自动根据key(第一项)进行升序排列
- QMap<QString,int> m_map;
- m_map["a"] = 10;//插入方式1
- m_map["as"] = 13;
- m_map.insert("b",22);//插入方式2
- m_map.insert("ba",23);
- auto find_index = m_map.find("as");//搜索
- if(find_index!=m_map.end()) {//返回为end表明未搜索到
- qDebug()<<find_index.key()<<find_index.value();
- }
- qDebug()<<m_map.value("a");//直接搜索,根据值key找值
- qDebug()<<m_map.value("aa");//没这项
- qDebug()<<m_map.key(13);//根据值找key
- qDebug()<<m_map.key(14);//没这项
返回结果:
- "as" 13
- 10
- 0
- "as"
- ""
相关帮助文档请见官网
erase删除某项,由于map的key具有唯一性,可以通过m_map[XX]=YY;修改已有项的值,若此项并不存在则会创建新的。
2. 其他
2.1. value/key方法返回值
value若查找不到目标会返回默认值,对于默认值得解释:
Returns a list containing all the values in the map, in
ascending order of their keys. If a key is associated with multiple
values, all of its values will be in the list, and not just the most
recently inserted one.
如果没有主动设置默认值,返回Qt默认值,此值在文档的容器介绍有说明
The documentation of certain container class functions refer to default-constructed values; for example, QVector automatically initializes its items with default-constructed values, and QMap::value()
returns a default-constructed value if the specified key isn’t in the
map. For most value types, this simply means that a value is created
using the default constructor (e.g. an empty string for QString). But for primitive types likeint
anddouble
,
as well as for pointer types, the C++ language doesn’t specify any
initialization; in those cases, Qt’s containers automatically initialize
the value to 0.
key方法若找不到相应key,同样返回默认值。
2.2. QMap与std::map
QMap使用Iterator.key(),和Iterator.value()方法获取第一个或第二个元素的值。
而std::map使用Iterator->first(), Iterator->second()来获取第一个或第二个元素的值
2.3. std::map<Key, T> QMap::toStdMap() const
QMap实现了与std::map相互转换,toStdMap转到std,使用QMap的构造函数从std::map转到QMap
- QMap(std::initializer_list<std::pair<Key, T> > list)
- QMap(const QMap<Key, T> &other)
- QMap(QMap<Key, T> &&other)
- QMap(const std::map<Key, T> &other)//可以导入std::map
QMap使用的更多相关文章
- 第37课 深度解析QMap与QHash
1. QMap深度解析 (1)QMap是一个以升序键顺序存储键值对的数据结构 ①QMap原型为 class QMap<K, T>模板 ②QMap中的键值对根据Key进行了排序 ③QMap中 ...
- QMap
#include <QCoreApplication> #include<QMap> #include<QDebug> int main(int argc, cha ...
- QMap与QHash
关联容器可以保存任意多个具有相同类型的项,且它们由一个键索引.Qt提供两个主要的关联容器类:QMap<K, T>和QHash<K, T>. QMap<K, T>是一 ...
- QVariant类学习(非常强大的类型,甚至能处理QMap<QString ,QVariant>)
详细描述: QVariant类作为一个最为普遍的Qt数据类型的联合. 因为c++禁止没有构造函数和析构函数的联合体,许多继承的Qt类不能够在联合体当中使用.(联合体当中的变量共用一个存储区),没有了联 ...
- c++ map与 qt QMap insert 区别
当插入相同key的字段时, c++ map 会保留原来的字段, QMap 则会取代原来的字段.
- 1.QT中的容器QVector,QList,QSet,QMap,QQueue,QStack,QMultiMap,QSingleList等
1 新建一个项目 在pro文件中只需要加上CONFIG += C++11 main.cpp #include <QMap> int main() { QMap<int,QStrin ...
- QMap迭代器
QMap<int, QString> intToStr; intToStr[] = "test" for (auto iter = intToStr.begin(); ...
- QT 信号槽connect中解决自定义数据类型或数组作为函数参数的问题——QT qRegisterMetaType 注册MetaType——关键:注册自定义数据类型或QMap等容器类
一般情况下信号槽直接连接方式不会出现问题,但是如果信号与槽在不同线程或Qt::QueuedConnection方式连接,可能会在连接期间报以下类似问题,如: QObject::connect: Can ...
- Qt532.容器QMap&QMultiMap
PS: QMap 一个Key 只能对应 一个Value (不是绝对的情况...内部都有 一个key对应多个value的机制) PS: QMultiMap 一个Key 可以对应 多个Value PS: ...
- 遍历QMap引发异常处理
引言 用常规方法遍历QMap,删除满足条件元素时出现“读取位置0xXXX时发生访问冲突”.查看“调用堆栈”指向QMap<int,int>::iterator::operator++()和Q ...
随机推荐
- 基于visual studio 2017 以及cubemx 搭建stm32的开发环境(1)
参考如下文档: 传送门:http://www.stm32cube.com/article/128 如果链接不存在的话,下载我截屏好的图: 传送门:https://pan.baidu.com/s/1NC ...
- cgywin下 hadoop运行 问题
1 cgywin下安装hadoop需要配置JAVA_home变量 , 此时使用 window下安装的jdk就可以 ,但是安装路径不要带有空格.否则会不识别. 2 在Window下启动Hadoop ...
- 2017-2018-1 20155327 《信息安全系统设计基础》课堂测试&课下作业
2017-2018-1 20155327 <信息安全系统设计基础>课堂测试&课下作业 学习使用stat(1),并用C语言实现 提交学习stat(1)的截图 man -k ,grep ...
- struts常用知识
一,struts2是什么? struts2是一个控制框架,相当于连接底层和显示层,控制页面和数据展示 二,为什么用struts2? jsp+javabean模式:jsp里的小脚本java代码太多,页面 ...
- JDK核心源码
一.核心包有哪些? Jdk的包中,除开了lang包下面的类,用得最多的应该要属于util包下面的类了, 本篇文章主要针对Jdk的util包下面的类(util目录下面的类,暂时不包括util 包下面的子 ...
- 快读板子fread
struct ios { inline char read(){ <<|; static char buf[IN_LEN],*s,*t; ,IN_LEN,stdin)),s==t?-:*s ...
- vcruntime140.dll 丢失64位系统
1. 下载VC Redistributable for VS2015,网址https://www.microsoft.com/en-us/download/confirmation.aspx?id=4 ...
- Spring学习(一)-----Spring 模块详解
官方下载链接:http://repo.spring.io/release/org/springframework/spring/ Spring 模块详解: Core 模块 spring-beans-3 ...
- testNG-失败用例重跑机制
下面简单介绍下testNG的失败重跑的实现方法: 1.首先编写一个类,实现IRetryAnalyzer类,重写其中的retry方法. public class TestNGRetry implemen ...
- ubuntu/linux系统中安装jdk以及eclipse(附图解详细步骤)
1.首先得先下载JDK和eclipsejdk下载网址:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-21 ...