C++ | C++ 类 & 对象 | C++ 友元函数
C++ 友元函数
类的友元函数是定义在类外部,但有权访问类的所有私有(private)成员和保护(protected)成员。尽管友元函数的原型有在类的定义中出现过,但是友元函数并不是成员函数。
友元可以是一个函数,该函数被称为友元函数;友元也可以是一个类,该类被称为友元类,在这种情况下,整个类及其所有成员都是友元。
如果要声明函数为一个类的友元,需要在类定义中该函数原型前使用关键字 friend,如下所示:
class Box
{
double width;
public:
double length;
friend void printWidth( Box box );
void setWidth( double wid );
};
声明类 ClassTwo 的所有成员函数作为类 ClassOne 的友元,需要在类 ClassOne 的定义中放置如下声明:
实例1:
/*******************************************************************
* > File Name: classFriend.cpp
* > Create Time: 2021年09月 3日 11:21:25
******************************************************************/
#include
using namespace std;
class Box{
double width;
public:
friend void printWidth(Box box);
void setWidth(double wid);
};
/* 成员函数定义 */
void Box::setWidth(double wid)
{
width = wid;
}
/* printWidth不是任何类的成员函数 */
void printWidth(Box box)
{
/* 因为 printWidth() 是 Box 的友元,它可以直接访问该类的任何成员 */
cout }
int main(void)
{
Box box;
box.setWidth(100.0); /* 使用成员函数设置宽度 */
printWidth(box); /* 使用友元函数输出宽度 */
return 0;
}
编译、运行:
PS E:fly-prjcplusplusday5> make
g++ -o classFriend classFriend.cpp -g -Wall
PS E:fly-prjcplusplusday5> .classFriend.exe
The width of box: 100
友元函数的使用
因为友元函数没有this指针,则参数要有三种情况:
要访问非static成员时,需要对象做参数;
要访问static成员或全局变量时,则不需要对象做参数;
如果做参数的对象是全局对象,则不需要对象做参数.
可以直接调用友元函数,不需要通过对象或指针.
实例2:
class INTEGER
{
friend void Print(const INTEGER& obj);//声明友元函数
};
void Print(const INTEGER& obj)
{
//函数体
}
void main()
{
INTEGER obj;
Print(obj);//直接调用
}
实例3(友元类的使用):
/*******************************************************************
* > File Name: classFriend1.cpp
* > Create Time: 2021年09月 3日 11:42:10
******************************************************************/
#include
using namespace std;
class Box{
double width; // 成员,变量,私有(private)
public:
friend void printWidth(Box box); // 友元函数声明
friend class smallBox; // 友元类声明
void setWidth(double wid); // 方法,函数声明
};
class smallBox{
public:
// smallBox是Box的友元类,可以访问Box的任何成员
void printSmallBox(double wid, Box &box)
{
box.setWidth(wid); /* 使用Box类的方法设置参数 */
cout }
};
/* 类的成员函数定义 */
void Box::setWidth(double wid)
{
width = wid;
}
/* printWidth不是任何类的成员函数 */
void printWidth(Box box)
{
/* printWidth是Box的友元,可以访问Box的任何成员 */
cout }
int main(void)
{
Box box1; /* 声明对象box1,类型Box */
smallBox box2; /* 声明对象box2,类型smallBox */
box1.setWidth(10.0); /* 使用成员函数设置参数 */
printWidth(box1); /* 使用友元函数设置参数 */
box2.printSmallBox(99.0, box1); /* 使用友元类中的方法设置参数 */
return 0;
}
编译、运行:
PS E:fly-prjcplusplusday5> make
g++ -o classFriend1 classFriend1.cpp -g -Wall
PS E:fly-prjcplusplusday5> .classFriend1.exe
The width of box(friend): 10
The width of box: 99
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.e1idc.net