Как избежать ошибок доступа при использовании дружественных функций в c ++? - PullRequest
0 голосов
/ 19 апреля 2020
#include <iostream>
using namespace std;

class boss{
int salary;

public:
 boss();
 boss(int b){
  salary = b;
 }
 friend void total(boss, employe);
};


class employe{
 int salary;
 friend void total(boss, employe);

public:
 employe();
 employe(int e){
  salary = e;
 }
 friend void total(boss, employe);
};

void total(boss b, employe e){
 int T;
 T = b.salary + e.salary;
 cout << T;
}


int main(){

boss bb(200);
 employe ee(300);

 total(bb,ee);
 }

Ошибки, с которыми я сталкиваюсь

        16:31:40 **** Incremental Build of configuration Debug for project Practice ****
make all 
'Building file: ../src/Practice.cpp'
'Invoking: Cross G++ Compiler'
g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"src/Practice.d" -MT"src/Practice.o" -o "src/Practice.o" "../src/Practice.cpp"
../src/Practice.cpp:20:26: error: 'employe' has not been declared
   20 |  friend void total(boss, employe);
      |                          ^~~~~~~
../src/Practice.cpp: In function 'void total(boss, employe)':
../src/Practice.cpp:38:8: error: 'int boss::salary' is private within this context
   38 |  T = b.salary + e.salary;
      |        ^~~~~~
../src/Practice.cpp:13:6: note: declared private here
   13 |  int salary = 3000;
      |      ^~~~~~
make: *** [src/subdir.mk:20: src/Practice.o] Error 1
"make all" terminated with exit code 2. Build might be incomplete.

16:31:40 Build Failed. 3 errors, 0 warnings. (took 655ms)

1 Ответ

1 голос
/ 19 апреля 2020

Сбой объявления friend total(boss, employe) в boss, поскольку employe еще не было объявлено.

Добавить предварительное объявление на employe выше boss.

class employe; // <--- add this

class boss{
int salary = 3000;

public:
 boss();
 boss(int b){
  salary = b;
 }
 friend void total(boss, employe);
};
...