How can I find an object in a vector based on class properties?(如何根据类属性在向量中找到对象?)
问题描述
I have a class Attribute
with the property std::string attributeName
. I would like to develop a simple function that returns the index of the Attribute
that has an attributeName
matching a provided string. Unfortunate restrictions include: I do not have c++0x at my disposal, and I have already overloaded the Attribute
== operator for something more complex. Any help would be appreciated, thanks!
edit- I'm very sorry, I realized it is not clear that there is a vector of attributes I am searching in. vector<Attribute> aVec
.
Use std::find_if
with a custom function object:
class FindAttribute
{
std::string name_;
public:
FindAttribute(const std::string& name)
: name_(name)
{}
bool operator()(const Attribute& attr)
{ return attr.attributeName == name_; }
};
// ...
std::vector<Attribute> attributes;
std::vector<Attribute>::iterator attr_iter =
std::find_if(attributes.begin(), attributes.end(),
FindAttribute("someAttrName"));
if (attr_iter != attributes.end())
{
// Found the attribute named "someAttrName"
}
To do it in C++11, it actually not that different, except you obviously don't need a function object, or have to declare the iterator type:
std::vector<Attribute> attributes;
// ...
auto attr_iter = std::find_if(std::begin(attributes), std::end(attributes),
[](const Attribute& attr) -> bool
{ return attr.attributeName == "someAttrName"; });
Or if you need to do this multiple times with different names, create the lambda function as a variable, and use std::bind
in the call to std::find_if
:
auto attributeFinder =
[](const Attribute& attr, const std::string& name) -> bool
{ return attr.attributeName == name; };
// ...
using namespace std::placeholders; // For `_1` below
auto attr_iter = std::find_if(std::begin(attributes), std::end(attributes),
std::bind(attributeFinder, _1, "someAttrName"));
这篇关于如何根据类属性在向量中找到对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何根据类属性在向量中找到对象?
基础教程推荐
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 运算符重载的基本规则和习语是什么? 2022-10-31