Ricerca…


Creare una coppia e accedere agli elementi

La coppia ci consente di trattare due oggetti come un unico oggetto. Le coppie possono essere facilmente costruite con l'aiuto della funzione template std::make_pair .

Il modo alternativo è quello di creare una coppia e assegnare i suoi elementi ( first e second ) più tardi.

#include <iostream>
#include <utility>

int main()
{
    std::pair<int,int> p = std::make_pair(1,2); //Creating the pair
    std::cout << p.first << " " << p.second << std::endl; //Accessing the elements




    //We can also create a pair and assign the elements later
    std::pair<int,int> p1;
    p1.first = 3;
    p1.second = 4;
    std::cout << p1.first << " " << p1.second << std::endl;

    //We can also create a pair using a constructor
    std::pair<int,int> p2 = std::pair<int,int>(5, 6);
    std::cout << p2.first << " " << p2.second << std::endl;

    return 0;
}

Confronta gli operatori

I parametri di questi operatori sono lhs e rhs

  • operator== verifica se entrambi gli elementi su lhs e rhs sono uguali. Il valore restituito è true se entrambi lhs.first == rhs.first AND lhs.second == rhs.second , altrimenti false
std::pair<int, int> p1 = std::make_pair(1, 2);
std::pair<int, int> p2 = std::make_pair(2, 2);

if (p1 == p2)
    std::cout << "equals";
else
    std::cout << "not equal"//statement will show this, because they are not identical
  • operator!= verifica se alcuni elementi sulla coppia lhs e rhs non sono uguali. Il valore restituito è true se lhs.first != rhs.first OR lhs.second != rhs.second , altrimenti restituisce false .

  • operator< verifica se lhs.first<rhs.first , restituisce true . Altrimenti, se rhs.first<lhs.first restituisce false . Altrimenti, se lhs.second<rhs.second restituisce true , altrimenti restituisce false .

  • operator<= restituisce !(rhs<lhs)

  • operator> restituisce rhs<lhs

  • operator>= restituisce !(lhs<rhs)

    Un altro esempio con contenitori di coppie. Utilizza l' operator< perché ha bisogno di ordinare il contenitore.

#include <iostream>
#include <utility>
#include <vector>
#include <algorithm>
#include <string>
 
int main()
{
    std::vector<std::pair<int, std::string>> v = { {2, "baz"},
                                                   {2, "bar"},
                                                   {1, "foo"} };
    std::sort(v.begin(), v.end());
 
    for(const auto& p: v) {
        std::cout << "(" << p.first << "," << p.second << ") ";
        //output: (1,foo) (2,bar) (2,baz)
    }
}


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow