tuple — Klasa
Opakowuje sekwencję elementów o stałej długości.
Składnia
class tuple {
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
};
Parametry
TN
Typ elementu krotki Nth.
Uwagi
Szablon klasy opisuje obiekt, który przechowuje N obiektów typów T1
, , T2
..., TN
, odpowiednio, gdzie 0 <= N <= Nmax
. Zakres wystąpienia tuple<T1, T2, ..., TN>
krotki to liczba N
argumentów szablonu. Indeks argumentu Ti
szablonu i odpowiadającej mu wartości przechowywanej tego typu to i - 1
. W związku z tym, podczas gdy w tej dokumentacji numerujemy typy od 1 do N, odpowiadające im wartości indeksu wahają się od 0 do N -1.
Przykład
// 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);
}
}
The tuple p1 is: ( 10, 0.011, one ).
The tuple p2 is: ( 10, 0.222, two ).
The tuple p3 is: ( 10, 0.011, one ).
The tuples in the vector are
( 10, 0.011, one ).
( 10, 0.222, two ).
( 3, 0.033, three ).
operator =
tuple
Przypisuje obiekt.
tuple& operator=(const tuple& right);
template <class U1, class U2, ..., class UN>
tuple& operator=(const tuple<U1, U2, ..., UN>& right);
template <class U1, class U2>
tuple& operator=(const pair<U1, U2>& right); // N == 2
tuple& operator=(tuple&& right);
template <class U1, class U2>
tuple& operator=(pair<U1, U2>&& right);
Parametry
ONZ
Typ elementu skopiowanej krotki Nth.
Prawy
Krotka do skopiowania.
Uwagi
Pierwsze dwa operatory składowe przypisują elementy prawa do odpowiednich elementów elementu *this
. Trzeci operator elementu członkowskiego przypisuje right.first
element w indeksie 0 i *this
right.second
do elementu w indeksie 1. Wszystkie trzy operatory składowe zwracają wartość *this
.
Pozostałe operatory składowe są analogiami do wcześniejszych, ale z deklaratorem odwołania Rvalue: &&.
Przykład
// std__tuple__tuple_operator_as.cpp
// compile with: /EHsc
#include <tuple>
#include <iostream>
#include <utility>
typedef std::tuple<int, double, int, double> Mytuple;
int main()
{
Mytuple c0(0, 1, 2, 3);
// display contents " 0 1 2 3"
std::cout << " " << std::get<0>(c0);
std::cout << " " << std::get<1>(c0);
std::cout << " " << std::get<2>(c0);
std::cout << " " << std::get<3>(c0);
std::cout << std::endl;
Mytuple c1;
c1 = c0;
// display contents " 0 1 2 3"
std::cout << " " << std::get<0>(c1);
std::cout << " " << std::get<1>(c1);
std::cout << " " << std::get<2>(c1);
std::cout << " " << std::get<3>(c1);
std::cout << std::endl;
std::tuple<char, int> c2;
c2 = std::make_pair('x', 4);
// display contents " x 4"
std::cout << " " << std::get<0>(c2);
std::cout << " " << std::get<1>(c2);
std::cout << std::endl;
return (0);
}
0 1 2 3
0 1 2 3
x 4
swap
Wymienia elementy dwóch krotki.
template <class... Types>
void swap(tuple<Types...&> left, tuple<Types...&> right);
Parametry
Lewy
Krotka, której elementy mają być wymieniane z prawem krotki.
Prawy
Krotka, której elementy mają być wymieniane z krotką pozostawioną.
Uwagi
Funkcja wykonuje left.swap(right)
polecenie .
tuple
tuple
Tworzy obiekt.
constexpr tuple();
explicit constexpr tuple(const Types&...);
template <class... UTypes>
explicit constexpr tuple(UTypes&&...);
tuple(const tuple&) = default;
tuple(tuple&&) = default;
template <class... UTypes>
constexpr tuple(const tuple<UTypes...>&);
template <class... UTypes>
constexpr tuple(tuple<UTypes...>&&);
// only if sizeof...(Types) == 2
template <class U1, class U2>
constexpr tuple(const pair<U1, U2>&);
template <class U1, class U2>
constexpr tuple(pair<U1, U2>&&);
Parametry
ONZ
Typ elementu skopiowanej krotki Nth.
Prawy
Krotka do skopiowania.
Uwagi
Pierwszy konstruktor konstruuje obiekt, którego elementy są konstruowane domyślnie.
Drugi konstruktor konstruuje obiekt, którego elementy są kopiowane z argumentów P1
, , P2
... z PN
każdym Pi
inicjującym element w indeksie i - 1
.
Trzeci i czwarty konstruktor tworzy obiekt, którego elementy są kopiowane z odpowiedniego elementu po prawej stronie.
Piąty konstruktor tworzy obiekt, którego element w indeksie 0 jest kopiowany z right.first
i którego element w indeksie 1 jest kopiowany z right.second
.
Pozostałe konstruktory są analogiami do wcześniejszych, ale z deklaratorem odwołania Rvalue: &&.
Przykład
// std__tuple__tuple_tuple.cpp
// compile with: /EHsc
#include <tuple>
#include <iostream>
#include <utility>
typedef std::tuple<int, double, int, double> Mytuple;
int main()
{
Mytuple c0(0, 1, 2, 3);
// display contents "0 1 2 3"
std::cout << std::get<0>(c0) << " ";
std::cout << std::get<1>(c0) << " ";
std::cout << std::get<2>(c0) << " ";
std::cout << std::get<3>(c0);
std::cout << std::endl;
Mytuple c1;
c1 = c0;
// display contents "0 1 2 3"
std::cout << std::get<0>(c1) << " ";
std::cout << std::get<1>(c1) << " ";
std::cout << std::get<2>(c1) << " ";
std::cout << std::get<3>(c1);
std::cout << std::endl;
std::tuple<char, int> c2(std::make_pair('x', 4));
// display contents "x 4"
std::cout << std::get<0>(c2) << " ";
std::cout << std::get<1>(c2);
std::cout << std::endl;
Mytuple c3(c0);
// display contents "0 1 2 3"
std::cout << std::get<0>(c3) << " ";
std::cout << std::get<1>(c3) << " ";
std::cout << std::get<2>(c3) << " ";
std::cout << std::get<3>(c3);
std::cout << std::endl;
typedef std::tuple<int, float, int, float> Mytuple2;
Mytuple c4(Mytuple2(4, 5, 6, 7));
// display contents "4 5 6 7"
std::cout << std::get<0>(c4) << " ";
std::cout << std::get<1>(c4) << " ";
std::cout << std::get<2>(c4) << " ";
std::cout << std::get<3>(c4);
std::cout << std::endl;
return (0);
}
0 1 2 3
0 1 2 3
x 4
0 1 2 3
4 5 6 7