久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

tr1中新增加的tuple介紹

 quasiceo 2013-12-10
分類: C++特性 2010-02-13 06:08 447人閱讀 評論(0) 收藏 舉報

tuple可以最多將10個類型捆綁起來, 用法看代碼吧...

 

  1. #include <iostream>  
  2. #include <string>  
  3. #include <tuple>  
  4. #include <stack>   
  5. using namespace std;   
  6.   
  7.   
  8. void Test2()  
  9. {  
  10.     tr1::tuple <charint, string, double> a('A', 1, "TEXT1", 123.321);   
  11.     cout << tr1::get<0>(a) << endl;   
  12.     cout << tr1::get<1>(a) << endl;   
  13.     cout << tr1::get<2>(a) << endl;   
  14.     cout << tr1::get<3>(a) << endl;   
  15.   
  16.     stack <tr1::tuple <string, int> > s;   
  17.     for (int i=0; i<6; i++)  
  18.     {  
  19.         char buf[20];   
  20.         tr1::tuple <string, int> t(string("姓名")+itoa(i, buf, 10), i);   
  21.         s.push(t);   
  22.     }  
  23.     cout << "姓名/t學(xué)號" << endl;   
  24.     while (!s.empty())  
  25.     {  
  26.         tr1::tuple <string, int> t(s.top());   
  27.         s.pop();   
  28.         cout << tr1::get<0>(t) << "/t" << tr1::get<1>(t) << endl;   
  29.     }  
  30. }  
  31.   
  32. void main()  
  33. {  
  34.     try  
  35.     {  
  36.         Test2();   
  37.     }  
  38.     catch (exception e)  
  39.     {  
  40.         cout << e.what() << endl;   
  41.     }  
  42. }  


    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,謹防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多