How to use find algorithm with a vector of pointers to objects in c++?

后端 未结 4 2069
逝去的感伤
逝去的感伤 2021-02-07 07:04

I want to find in a vector of Object pointers for a matching object. Here\'s a sample code to illustrate my problem:

class A {
public:
    A(string a):_a(a) {}
          


        
4条回答
提交回复
热议问题