Freigeben über


tuple Class

Bindet eine Sequenz von Elementen mit fester Länge ein.

template<class T1, class T2, ..., class TN>
class tuple {
public:
    tuple();
    explicit tuple(P1, P2, ..., PN);              // 0 < N
    tuple(const tuple&);
    template <class U1, class U2, ..., class UN>
        tuple(const tuple<U1, U2, ..., UN>&);
    template <class U1, class U2>
        tuple(const pair<U1, U2>&);               // N == 2
    void swap(tuple& right);
    tuple& operator=(const tuple&);
    template <class U1, class U2, ..., class UN>
        tuple& operator=(const tuple<U1, U2, ..., UN>&);
    template <class U1, class U2>
        tuple& operator=(const pair<U1, U2>&);    // N == 2
    };

Parameter

  • TN
    Der Typ des N-ten Tupelelements.

Hinweise

Die Vorlagenklasse beschreibt ein Objekt, das N-Objekte von Typen T1, T2 speichert,..., TN bzw. wo wo 0 <= N <= Nmax.Der Umfang der Tupelinstanz tuple<T1, T2, ..., TN> ist die Anzahl N aus den Vorlagenargumenten.Der Index des Vorlagenarguments Ti und des entsprechenden gespeicherten Wert dieses Typs ist i - 1.Daher während wir die Typen von 1 bis n in dieser Dokumentation Zahlen-, der entsprechende Indexwertbereich von 0 bis n - 1.

Beispiel

// tuple.cpp
// compile with: /EHsc

#include <vector>
#include <iomanip>
#include <iostream>
#include <tuple>
#include <string>

using namespace std;

typedef tuple <int, double, string> ids;

void print_ids(const ids& i)
{
   cout << "( "
        << get<0>(i) << ", " 
        << get<1>(i) << ", " 
        << get<2>(i) << " )." << endl;
}

int main( )
{
   // Using the constructor to declare and initialize a tuple
   ids p1(10, 1.1e-2, "one");

   // Compare using the helper function to declare and initialize a tuple
   ids p2;
   p2 = make_tuple(10, 2.22e-1, "two");

   // Making a copy of a tuple
   ids p3(p1);

   cout.precision(3);
   cout << "The tuple p1 is: ( ";
   print_ids(p1);
   cout << "The tuple p2 is: ( ";
   print_ids(p2);
   cout << "The tuple p3 is: ( ";
   print_ids(p3);

   vector<ids> v;

   v.push_back(p1);
   v.push_back(p2);
   v.push_back(make_tuple(3, 3.3e-2, "three"));

   cout << "The tuples in the vector are" << endl;
   for(vector<ids>::const_iterator i = v.begin(); i != v.end(); ++i)
   {
      print_ids(*i);
   }
}
  
  
  
  
  
  

Anforderungen

Header: <tuple>

Namespace: std

Siehe auch

Referenz

<tuple>

make_tuple Function