簡體   English   中英

在 c++ 中使用好友功能時如何避免訪問錯誤?

[英]How to avoid access errors while using friend functions in c++?

#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)

boss 中的friend total(boss, employe) boss失敗,因為employe尚未聲明。

boss上方添加一個前向聲明的employe

class employe; // <--- add this

class boss{
int salary = 3000;

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM