본문 바로가기
카테고리 없음

map [] 연산자를 사용하는 방법

by ByteBridge 2013. 3. 29.
반응형

//연산자[] 를 사용하여 데이터를 넣는 방법

#include "stdafx.h"

#include <map>

#include<string>

#include<iostream>

using namespace std;



int _tmain(int argc, _TCHAR* argv[])

{


map<string,int> person;

map<string,int>::iterator pos;//맵 인덱스 값.

person["김땡땡"] = 20;

person["김남영"] = 11;

person["이남혁"] = 2;

person["미미밈"] = 22;

person["강기태"] = 34;

person["허영석"] = 45;

person["머라고"] = 55;

person["어쩌라"] = 99;


  //맵에서 데이터를 출력하기

for (pos=person.begin();pos != person.end();++pos)

{

cout<<pos->first<<": "<<pos->second<<endl;

}



return 0;

}


반응형