C ++:无法访问成员-使用朋友功能允许一个类修改另一个类的成员数据

问题描述 投票:0回答:1

好的,我到处都在寻找答案。

我正在尝试建立一个系统,其中只能通过单独类的两个成员函数来修改对象的私有成员。

这里是要修改的对象的标题内容,table.h:

#ifndef TABLE_H
#define TABLE_H

#include "party.h"

/*
Seats a party for their dining experience at the restaurant.
*/
class table
{
    friend void server::seatGuests(const table &, const party &);
    friend void server::cleanTable(const table &);

private:
    const unsigned int cap_; //guest capacity (shouldn't change)
    const unsigned int id_;  //table id (shouldn't change)
    mutable bool isTaken_;   //flag (changeable by friend functions)
    party *const group_;     //party seated at the table (starts off as null)

public:
    table::table(const unsigned int id, const unsigned int cap = 4); //ctor
    inline const unsigned int table::getCap() const { return cap_; }
    inline const unsigned int table::getId() const { return id_; }
    inline const bool table::isTaken() const { return isTaken_; }
    inline const party *const table::getParty() const { return group_; };
};

void server::seatGuests(const table &t, const party &p)
{
    t.isTaken_ = false;
}

#endif // TABLE_H

这里是server.h:

class server : public employee
{
private:
public:
    explicit server::server();
    void server::seatGuests(const table &, const party &);
    void server::cleanTable(const table &);
};

...

我收到以下错误:member "table::isTaken_" (declared at line 17) is inaccessible

server.h文件间接包含在table.h中,因为party.h包括restaurant.h,而后者包括server.h。

我之前尝试将其放在table.h中:

class server;
namespace server {
   void server::seatGuests(const table &, const party &);
   void server::cleanTable(const table &);
}

但是这让我更加头疼,因为编译器会吐出类似“类服务器没有成员'seatGuests'或'cleanTable'”的信息,我认为这是由于某些包含冲突造成的。此冲突是为什么我在原始server.h文件而不是table.h文件中声明该函数的原因。

话虽这么说,我已经读过诸如this one之类的资源,但该朋友功能的实现应在正在修改其数据的类中,这是我所做的。

除此之外,编译器仍然认为成员数据不可访问。有人可以在这里看到我在做什么吗?

让我知道是否要我发布更多代码。

提前感谢。

编辑

抱歉延迟发布编译器输出。请看下面:

> Executing task: clang++ -Wall -std=c++17 -stdlib=libc++ -o main.out /Users/ajm/Projects/restaurant/cpp/main/main.cpp -I/Users/ajm/Projects/restaurant/cpp/main/ -I/Users/ajm/Projects/restaurant/cpp/restaurant/ -I/Users/ajm/Projects/restaurant/cpp/people/ -I/Users/ajm/Projects/restaurant/cpp/people/workers/ -I/Users/ajm/Projects/restaurant/cpp/data/ --debug <

In file included from /Users/ajm/Projects/restaurant/cpp/main/main.cpp:1:
In file included from /Users/ajm/Projects/restaurant/cpp/main/simulation.h:4:
In file included from /Users/ajm/Projects/restaurant/cpp/restaurant/restaurant.h:4:
In file included from /Users/ajm/Projects/restaurant/cpp/restaurant/tablespace.h:4:
In file included from /Users/ajm/Projects/restaurant/cpp/restaurant/table.h:4:
In file included from /Users/ajm/Projects/restaurant/cpp/people/workers/server.h:4:
In file included from /Users/ajm/Projects/restaurant/cpp/people/workers/employee.h:5:
In file included from /Users/ajm/Projects/restaurant/cpp/main/../data/job.h:4:
/Users/ajm/Projects/restaurant/cpp/people/party.h:25:16: error: unknown type name 'restaurant'
    void start(restaurant &spot);
               ^
In file included from /Users/ajm/Projects/restaurant/cpp/main/main.cpp:1:
In file included from /Users/ajm/Projects/restaurant/cpp/main/simulation.h:4:
In file included from /Users/ajm/Projects/restaurant/cpp/restaurant/restaurant.h:4:
In file included from /Users/ajm/Projects/restaurant/cpp/restaurant/tablespace.h:4:
/Users/ajm/Projects/restaurant/cpp/restaurant/table.h:8:11: error: redefinition of 'server' as different kind of
      symbol
namespace server
          ^
/Users/ajm/Projects/restaurant/cpp/restaurant/table.h:7:7: note: previous definition is here
class server;
      ^
/Users/ajm/Projects/restaurant/cpp/restaurant/table.h:10:23: error: unknown type name 'table'
void seatGuests(const table &t, const party *const p);
                      ^
/Users/ajm/Projects/restaurant/cpp/restaurant/table.h:11:23: error: unknown type name 'table'
void cleanTable(const table &t);
                      ^
/Users/ajm/Projects/restaurant/cpp/restaurant/table.h:13:31: error: unknown type name 'table'
void server::seatGuests(const table &t, const party *const p)
                              ^
/Users/ajm/Projects/restaurant/cpp/restaurant/table.h:18:31: error: unknown type name 'table'
void server::cleanTable(const table &t)
                              ^
/Users/ajm/Projects/restaurant/cpp/restaurant/table.h:42:25: error: out-of-line declaration of 'seatGuests' does not
      match any declaration in 'server'
    friend void server::seatGuests(const table &t, const party *const p);
                        ^~~~~~~~~~
/Users/ajm/Projects/restaurant/cpp/restaurant/table.h:43:25: error: out-of-line declaration of 'cleanTable' does not
      match any declaration in 'server'
    friend void server::cleanTable(const table &t);
                        ^~~~~~~~~~
8 errors generated.
The terminal process terminated with exit code: 1
c++ friend
1个回答
0
投票

server::seatGuestsserver::cleanTable的声明必须出现在friend中的table声明之前。 #include "server.h"出现在table的声明之前,所以应该足够了吗?好吧,server包含tabletable包含server,因此我们具有循环依赖性。为了解决这个问题,table应该包含server,并且server应该向前声明table

// table.h

#include "party.h"

class table
{
    friend void server::seatGuests(const table &, const party &);
    friend void server::cleanTable(const table &);
};



// server.h

class table;
class party;

class server : public employee
{
public:
    explicit server();
    void seatGuests(const table &, const party &);
    void cleanTable(const table &);
};

循环依赖和朋友声明对我来说似乎是不好的设计。您可能需要重新考虑设计,而不是使用前向声明来解决此问题。找到一种避免循环并避免朋友声明的方法。 我的答案是解决方法,而不是解决方案。

© www.soinside.com 2019 - 2024. All rights reserved.