Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须从 Resistor 类创建一个动态分配的对象向量,它只有两个私有变量:电阻和容差。之后,必须创建一个函数,以便在向量中搜索那些阻力和容差等于函数参数中传递的值的对象。
搜索了一段时间后,我不知道如何实现这一点。有什么想法吗?
operator==(const Resistor&)
std::find
见http://www.cplusplus.com/reference/algorithm/find/