gpt4 book ai didi

c++ - 命名空间中定义的类中的友元函数

转载 作者:行者123 更新时间:2023-12-04 17:05:45 26 4
gpt4 key购买 nike

我正在尝试在 DataBase 中创建一个函数在 DataBase.h 中声明的命名空间在 DataBase.cpp 中实现的文件需要访问 Collection 的 protected 成员类(class)。

这是我目前拥有的
Collection.h :

class Collection
{
...
protected:
string name;
friend Collection& DataBase::getCollection(string name);
};
DataBase.h :
namespace DataBase {
...
Collection& getCollection(std::string collectionName);
}
DataBase.cpp :
namespace DataBase {
...
Collection& getCollection(std::string collectionName)
{
for (auto& collection : _collections)
if(collection.name == collectionName)
{
...
}
}

}

问题是我无法访问 name 属性。

最佳答案

您必须转发声明包含命名空间的友元函数。不知道你是怎么用的_collections ,所以我稍微改变了这个例子,我把所有的东西都放在一个文件里,从一些有用的东西开始。

#include <string>
#include <vector>
using namespace std;

class Collection;

namespace DataBase {
Collection* getCollection(std::vector<Collection>& collections, std::string collectionName);
}

class Collection
{
protected:
string name;
friend Collection* DataBase::getCollection(std::vector<Collection>& collections, std::string name);
};


namespace DataBase {
Collection* getCollection(std::vector<Collection>& collections, std::string collectionName)
{
for (auto& collection : collections)
if (collection.name == collectionName)
{
return &collection;
}
return nullptr;
}
}

关于c++ - 命名空间中定义的类中的友元函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62128417/

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