“Trouvez une variable de membre dans un vecteur d'objets CPP” Réponses codées

Trouvez une variable de membre dans un vecteur d'objets CPP

//Using a standard functor

struct MatchString
{
 MatchString(const std::string& s) : s_(s) {}
 bool operator()(const Type& obj) const
 {
   return obj.getName() == s_;
 }
 private:
   const std::string& s_;
};
UBoiii

Trouvez une variable de membre dans un vecteur d'objets CPP

//Using a lambda function (only C++11 or newer)
std::vector<Type> v = ....;
std::string myString = ....;
auto it = find_if(v.begin(), v.end(), [&myString](const Type& obj) {return obj.getName() == myString;})

if (it != v.end())
{
  // found element. it is an iterator to the first matching element.
  // if you really need the index, you can also get it:
  auto index = std::distance(v.begin(), it);
}
UBoiii

Réponses similaires à “Trouvez une variable de membre dans un vecteur d'objets CPP”

Questions similaires à “Trouvez une variable de membre dans un vecteur d'objets CPP”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code