码迷,mamicode.com
首页 > 编程语言 > 详细

C++ map常用操作及迭代器

时间:2020-06-11 21:35:04      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:string   print   alt   include   sign   cout   amp   map   ror   

1.返回迭代器

map_date.begin();

map_date.end();

map_date.find(find_date);

 

#include <iostream>
#include <vector>
#include <string>
#include <map>

using std::string;
using std::vector;
using std::map;


void vector_test()
{
    vector<unsigned char> Vec1;
    string Str{"123456"};

    Vec1.assign(Str.begin(), Str.end());
    std::cout << "String data is: " << std::endl;
    for(auto aa : Str)
        printf("%02x ", aa);
    std::cout << std::endl;
    std::cout << "Vector data is: " << std::endl;
    for(auto aa : Vec1)
        printf("%02x ", aa);
    std::cout << std::endl;
}

enum class enumResult
{
    NONE,
    SUCCESS,
    ERROR,
};
typedef enumResult (*pFun)(int);

enumResult mapTest_func1(int id)
{
    std::cout << "enter: " << __FUNCTION__ << std::endl;
    return enumResult::SUCCESS;
}

enumResult mapTest_func2(int id)
{
    std::cout << "enter: " << __FUNCTION__ << std::endl;
    return enumResult::SUCCESS;
}

void map_test(int num)
{
    map<int, pFun> map1 = 
    {
        {1, mapTest_func1},
        {2, mapTest_func2},
    };
    auto iterator_date = map1.find(num);
    iterator_date->second(iterator_date->first);
}

int main()
{
    vector_test();
    while(1)
    {
        int num = 0;
        std::cout << "**************test_menu*************" <<std::endl;
        std::cout << "***1.function1                   ***" <<std::endl;
        std::cout << "***2.function2                   ***" <<std::endl;
        std::cin >> num;
        if(1 != num && 2 != num)
        {
            std::cout << "num is error, please input anain!" << std::endl;
            continue;
        }
        map_test(num);
    }
}

技术图片

C++ map常用操作及迭代器

标签:string   print   alt   include   sign   cout   amp   map   ror   

原文地址:https://www.cnblogs.com/programer96s/p/13095870.html

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