“Encuentre una variable miembro en un vector de objetos CPP” Código de respuesta

Encuentre una variable miembro en un vector de objetos 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

Encuentre una variable miembro en un vector de objetos 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

Respuestas similares a “Encuentre una variable miembro en un vector de objetos CPP”

Preguntas similares a “Encuentre una variable miembro en un vector de objetos CPP”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código