C++中“tuple”(元組)容器詳解

來源:互聯網
上載者:User

tuple容器(元組), 是表示元組容器, 是不包含任何結構的,快速而低質(粗製濫造, quick and dirty)的, 可以用於函數返回多個傳回值;

tuple容器, 可以使用直接初始化, 和"make_tuple()"初始化, 訪問元素使用"get<>()"方法, 注意get裡面的位置資訊, 必須是常量運算式(const expression);

可以通過"std::tuple_size<decltype(t)>::value"擷取元素數量; "std::tuple_element<0, decltype(t)>::type"擷取元素類型;

如果tuple類型進行比較, 則需要保持元素數量相同, 類型可以比較, 如相同類型, 或可以相互轉換類型(int&double);

無法通過普通的方法遍曆tuple容器, 因為"get<>()"方法, 無法使用變數擷取值;

以下程式碼封裝含一些基本的用法, 詳見注釋;

代碼:

/*  * CppPrimer.cpp  *  *  Created on: 2013.12.9  *      Author: Caroline  */      /*eclipse cdt, gcc 4.8.1*/      #include <iostream>  #include <vector>  #include <string>  #include <tuple>        using namespace std;        std::tuple<std::string, int>  giveName(void)  {      std::string cw("Caroline");      int a(2013);      std::tuple<std::string, int> t = std::make_tuple(cw, a);      return t;  }        int main()  {      std::tuple<int, double, std::string> t(64, 128.0, "Caroline");      std::tuple<std::string, std::string, int> t2 =              std::make_tuple("Caroline", "Wendy", 1992);            //返回元素個數      size_t num = std::tuple_size<decltype(t)>::value;      std::cout << "num = " << num << std::endl;            //擷取第1個值的元素類型      std::tuple_element<1, decltype(t)>::type cnt = std::get<1>(t);      std::cout << "cnt = " << cnt << std::endl;            //比較      std::tuple<int, int> ti(24, 48);      std::tuple<double, double> td(28.0, 56.0);      bool b = (ti < td);      std::cout << "b = " << b << std::endl;            //tuple作為傳回值      auto a = giveName();      std::cout << "name: " << get<0>(a)              << " years: " << get<1>(a) << std::endl;            return 0;  }

輸出:

num = 3  cnt = 128  b = 1  name: Caroline years: 2013

作者:csdn部落格 Spike_King

更多精彩內容:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/cplus/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.