Suche…


Ein Paar erstellen und auf die Elemente zugreifen

Paar ermöglicht es uns, zwei Objekte als ein Objekt zu behandeln. Mit Hilfe der Vorlagenfunktion std::make_pair können Paare leicht std::make_pair .

Alternativ können Sie ein Paar erstellen und dessen Elemente ( first und second Element) später zuweisen.

#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;
}

Operatoren vergleichen

Parameter dieser Operatoren sind lhs und rhs

  • operator== prüft, ob beide Elemente des lhs und rhs Paares gleich sind. Der Rückgabewert ist true wenn sowohl lhs.first == rhs.first lhs.second == rhs.second , andernfalls 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!= prüft, ob Elemente auf dem Paar lhs und rhs nicht gleich sind. Der Rückgabewert ist true wenn entweder lhs.first != rhs.first ODER lhs.second != rhs.second , andernfalls false .

  • operator< - Tests , wenn lhs.first<rhs.first kehrt true . Andernfalls, wenn rhs.first<lhs.first false zurückgibt. Andernfalls, wenn lhs.second<rhs.second true zurückgibt, andernfalls false .

  • operator<= zurück !(rhs<lhs)

  • operator> gibt rhs<lhs

  • operator>= zurück !(lhs<rhs)

    Ein anderes Beispiel mit Containern von Paaren. Es verwendet den operator< da der Container sortiert werden muss.

#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
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow