我已经尝试了几周并搜索了几天的答案,但没有找到。我的代码相当大且相互交织,但我的问题在于 3 个函数/类,因此我只会显示我的声明和相关信息。我有以下不兼容的代码:
class Word{
private:
*members*
public:
//friend declaration so i could access members and use it in class - doesn't help
friend Word search_in_file(const string& searchee);
//function that uses previous function to create a Word object using data from file:
//type int to show it succeeded or failed
int fill(const string& searchee){
Word transmission = search_in_file(searchee);
//here are member transactions for this->members=transmission.member;
}
};
//function to return Word class from file:
Word search_in_file(const string& searchee){
//code for doing that
}
我已经尝试了所有可以声明函数或类的可能性,但没有找到解决方案。起初我只在构造函数中使用了 search_in_file() 函数(现在与函数 fill() 存在相同的问题),并在类中声明和定义了 search_in_file() 函数。然后它像上面的代码一样工作(唯一的例外是朋友函数也是具有定义的实际函数)。但是我需要在没有声明 Word 对象的情况下使用该函数,因此它需要在类之外。我怎样才能让它工作?
我还应该指出,我还有另一个使用 Word 作为参数的非成员函数,并且该函数适用于上述解决方案。尽管它具有重载版本,但它不使用 Word 作为在类之前声明的参数,我认为这就是它起作用的原因。