gpt4 book ai didi

c++ - 友元函数的单独声明

转载 作者:搜寻专家 更新时间:2023-10-31 01:01:38 24 4
gpt4 key购买 nike

我正在阅读 C++ 入门书。它说:

友元声明仅指定访问权限。它不是一般性声明功能。如果我们希望类的用户能够调用友元函数,那么我们还必须将函数与友元声明分开声明。为了让类的用户可以看到 friend ,我们通常声明每个 friend (在类之外)在与类本身相同的 header 中。

注意代码中的箭头。它在引用上述文本的那些特定点上提出了我的问题。

标题.h

#ifndef HEADER_H
#define HEADER_H

#include <iostream>
#include <string>

using namespace std;

class Husband{
friend void change_salary(int changed_salary, Husband &ob);

public:
Husband() {}
Husband(unsigned new_salary) : salary{ new_salary } {}

private:
int salary;

};

//void change_salary(int changed_salary, Husband &ob); <----Code Compiles without even this declaration

#endif

主要.cpp

#include "header.h"

void change_salary(int changed_salary, Husband &ob)
{
cout << "salary increased by 1000";
ob.salary = changed_salary;
}


int main()
{
Husband hs1{ 3000 };

change_salary(4000, hs1); // <---- Able to use function without explicit declaration outside of class in header

return 0;
}

最佳答案

如果在声明后的同一文件中使用该函数,则头文件中不需要原型(prototype),这就是您在 main.cpp 中所做的。

将原型(prototype)放在头文件中有助于代码在其他 文件中,或在同一文件但更高的文件中找到函数。在头文件中创建原型(prototype)以使人类读者清楚了解 API 通常是一种很好的做法。但是在你这里的情况下,并不是严格要求编译。

关于c++ - 友元函数的单独声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28704437/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com