gpt4 book ai didi

c++ - SEARCH 或 FOUND inside of vector 问题

转载 作者:行者123 更新时间:2023-11-28 08:19:58 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
How to find an item in a std::vector?

给定这两个类:

class Book
{
private:

string title;
int category;

public:

Book(const string& , int num);
}

Book(const string& name, int num)
:title(name), category(num)
{ }



class Reader
{
private:

string reader_name;
vector <Book> bookLists;

public:

void add(const Book &ref);
};

void add(const Book& ref)
{
// My problem is here.
}

我想在 Book 的 vector 中搜索。如果 Book 在 Book 的 vector 中,它什么都不做。如果 Book 不在 Book bookLists.push_back(ref);

的 vector 中

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com