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

Map 与结构体的混合使用

时间:2020-07-28 22:25:22      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:double   include   air   code   typedef   auto   str   using   insert   

#include <iostream>
#include <map>
 
using namespace std;
 
typedef struct alertInfo {
    double alertUp;
    double alertDown;
    alertInfo(double up, double down) {
        alertUp = up;
        alertDown = down;
    };
} alert;
 
int main()
{
    map<int, alert> alert_map;
 
    for (int i = 0; i < 10; i++) {
        alert_map.insert(pair<int, alert>(i, alert(240 * i, 200)));
    }
 
    for (auto it = alert_map.begin(); it != alert_map.end(); ++it) {
        cout << it->first  << " - > " << it->second.alertUp << endl;
    }
}

 

Map 与结构体的混合使用

标签:double   include   air   code   typedef   auto   str   using   insert   

原文地址:https://www.cnblogs.com/zhaopengpeng/p/13393347.html

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