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

hash_map

时间:2014-06-25 20:57:59      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   ext   color   

#include <hash_map>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;

   hash_map <int, CString> hm1;
   hash_map <int, CString> :: const_iterator hm1_AcIter, hm1_RcIter;
   typedef pair <int, CString> Int_Pair;

   hm1.insert ( Int_Pair ( 1, _T("aaa") ) );
   hm1.insert ( Int_Pair ( 2, _T("bbb") ) );
   hm1.insert ( Int_Pair ( 3, _T("ccc") ) );

   hm1_RcIter = hm1.find( 2 );
  AfxMessageBox( hm1_RcIter->second);
}

 

hash_map,布布扣,bubuko.com

hash_map

标签:style   class   blog   code   ext   color   

原文地址:http://www.cnblogs.com/duyy/p/3805520.html

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