我是靠谱客的博主 甜美机器猫,最近开发中收集的这篇文章主要介绍c++stl map数组下标的使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

//

//  main.cpp

//  TestCPP

//

//  Created by dragon on 2017/4/9.

//  Copyright © 2017 tars. All rights reserved.

//


int main(int argc, const char * argv[]) {

    map<int, string> mapInfoB;

    mapInfoB.clear();

    mapInfoB.insert(make_pair(2, "Ba"));

    

    map<int, string> mapInfo;

    mapInfo.clear();

    mapInfo.insert(make_pair(0, "a"));

    mapInfo.insert(make_pair(2, "a"));

    

    mapInfo[0] = mapInfoB[2]; // 0 2 都是key而不是数组中的下标,千万注意,十分危险危险危险:map是复杂数据类型使用千万注意

    

    for (map<int,string>::iterator it = mapInfo.begin(); it != mapInfo.end(); it++)

    {

        cout<<it->second<<endl; //Ba a

    }

    

    std::cout << "Hello, World!n";

    return 0;

}


最后

以上就是甜美机器猫为你收集整理的c++stl map数组下标的使用的全部内容,希望文章能够帮你解决c++stl map数组下标的使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部