我正在尝试编写像Twitter这样的控制台应用程序。 User和UserList类包括彼此。我试图访问以下用户的关注者。 UserList类用于链表。
//User.h
#pragma once
#include <iostream>
#include <string>
using namespace std;
class UserList;
class User
{
friend class UserList;
private:
string userName;
string personalComment;
UserList *followed;
UserList *following;
int followedNumber;
int followingNumber;
//TWEET
UserList *blocked;
User* next;
public:
User();
User(string&,string&);
};
//UserList.h
#pragma once
#include <iostream>
#include <string>
using namespace std;
class User;
class UserList{
private:
User *root;
public:
UserList();
~UserList();
void addUser(string&,string&);
bool checkUser(string&);
User& findUser(string&);
void printList();
};
首先,我写了一个函数来查找以下用户。
//userList.cpp
User& UserList::findUser(string& name)
{
User *temp=root;
while(temp!=NULL)
{
if(!name.compare(temp->userName))
{
return temp;
}
temp= temp->next;
}
temp= temp->next;
return temp;
}
例如,user1想要关注user2。我想检查user1是否已经跟随user2。(checkUser(用户名)在列表中查找用户并返回bool)
//main.cpp in main()
if(users.findUser(user1name).following->checkUser(user2name))
{
cout<<"Err: The user '"<< user1name << "' has already followed '"<<user2name<<"'!"<<endl;
}
但是有一个&#34; UserList * User :: following是private&#34;错误和&#34;在此背景下&#34;
如何访问此用户的列表?
答案 0 :(得分:0)
一般来说,你不应该把你的类的逻辑放在main
中。您的问题可以通过向User
添加方法来解决,该方法尝试添加其他用户,而不是在main
中执行此操作。像这样:
User::FollowOther(std::string other){
if(this->following->checkUser(other)) {
cout<<"Err: The user '"<< userName << "' has already followed '"<<other<<"'!"<<endl;
}
/*...*/
}
您收到的错误是因为User::following
在User
中是私有的。私人会员只能在班级内访问。例外情况是:您可以从声明为friend的其他类中访问私有成员。但您无法访问main
中的私人成员。顺便说一句,我并不是一个宣称朋友的粉丝,因为它破坏了封装,使得类之间的关系不那么明显,但这只是我个人的看法。