首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ >

C++友元friend -c++利用friend修饰符,可以让一些您设定的函数能够对这些保护数据进行操作

2012-07-23 
C++友元friend --c++利用friend修饰符,可以让一些你设定的函数能够对这些保护数据进行操作!-- [if gte ms

C++友元friend --c++利用friend修饰符,可以让一些你设定的函数能够对这些保护数据进行操作

<!-- [if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:PunctuationKerning/> <w:DrawingGridVerticalSpacing>7.8 磅</w:DrawingGridVerticalSpacing> <w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery> <w:DisplayVerticalDrawingGridEvery>2</w:DisplayVerticalDrawingGridEvery> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:SpaceForUL/> <w:BalanceSingleByteDoubleByteWidth/> <w:DoNotLeaveBackslashAlone/> <w:ULTrailSpace/> <w:DoNotExpandShiftReturn/> <w:AdjustLineHeightInTable/> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:UseFELayout/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument></xml><![endif]--><!-- [if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles></xml><![endif]--><!-- [if gte mso 10]><style> /* Style Definitions */ table.MsoNormalTable{mso-style-name:普通表格;mso-tstyle-rowband-size:0;mso-tstyle-colband-size:0;mso-style-noshow:yes;mso-style-parent:"";mso-padding-alt:0cm 5.4pt 0cm 5.4pt;mso-para-margin:0cm;mso-para-margin-bottom:.0001pt;mso-pagination:widow-orphan;font-size:10.0pt;font-family:"Times New Roman";mso-fareast-font-family:"Times New Roman";mso-ansi-language:#0400;mso-fareast-language:#0400;mso-bidi-language:#0400;}</style><![endif]-->

C++友元friend --c++利用friend修饰符,可以让一些你设定的函数能够对这些保护数据进行操作

分类: C++ 知识点回顾 2008-10-06 11:24 7642人阅读评论(0) 收藏举报

通常对于普通函数来说,要访问类的保护成员是不可能的,如果想这么做那么必须把类的成员都生命成为public(共用的),然而这做带来的问题遍是任何外部函数都可以毫无约束的访问它操作它,c++利用friend修饰符,可以让一些你设定的函数能够对这些保护数据进行操作,避免把类成员全部设置成public,最大限度的保护数据成员的安全。

   友元能够使得普通函数直接访问类的保护数据,避免了类成员函数的频繁调用,可以节约处理器开销,提高程序的效率,但矛盾的是,即使是最大限度的保护,同样也破坏了类的封装特性,这即是友元的缺点,在现在cpu速度越来越快的今天我们并不推荐使用它,但它作为c++一个必要的知识点,一个完整的组成部分,我们还是需要讨论一下的。

?

1. 在类里声明一个普通函数,在前面加上friend修饰,那么这个函数就成了该类的友元,可以访问该类的一切成员。

   下面我们来看一段代码,看看我们是如何利用友元来访问类的一切成员的。

#include?<iostream>???
using?namespace?std;?
class?Internet???
{???
public:???
????Internet(char?*name,char?*address)???
????{???
????????strcpy(Internet::name,name);???
????????strcpy(Internet::address,address);????
????}?
friend?void?ShowN(Internet?&obj);//友元函数的声明?
public:???
????char?name[20];?
????char?address[20];?
};?
?
?
void?ShowN(Internet?&obj)//函数定义,不能写成,void?Internet::ShowN(Internet?&obj)?
{?
????cout<<obj.name<<endl;?
}?
void?main()???
{?
????Internet?a("中国软件开发实验室","www.cndev-lab.com");?
????ShowN(a);?
????cin.get();?
}

  上面的代码通过友元函数的定义,我们成功的访问到了a对象的保护成员name,友元函数并不能看做是类的成员函数,它只是个被声明为类友元的普通函数,所以在类外部函数的定义部分不能够写成void Internet::ShowN(Internet &obj),这一点要注意。

  

2. 一个普通函数可以是多个类的友元函数,对上面的代码我们进行修改,注意观察变化:

#include?<iostream>???
using?namespace?std;?
class?Country;?
class?Internet???
{???
public:???
????Internet(char?*name,char?*address)???
????{???
????????strcpy(Internet::name,name);???
????????strcpy(Internet::address,address);????
????}?
friend?void?ShowN(Internet?&obj,Country?&cn);//注意这里?
public:???
????char?name[20];?
????char?address[20];?
};?
?
class?Country?
{?
public:?
????Country()?
????{?
????????strcpy(cname,"中国");?
????}?
friend?void?ShowN(Internet?&obj,Country?&cn);//注意这里?
protected:?
????char?cname[30];?
};?
?
void?ShowN(Internet?&obj,Country?&cn)?
{?
????cout<<cn.cname<<"|"<<obj.name<<endl;?
}?
void?main()???
{?
????Internet?a("中国软件开发实验室","www.cndev-lab.com");?
????Country?b;?
????ShowN(a,b);?
????cin.get();?
}

?

3一个类的成员函数函数也可以是另一个类的友元从而可以使得一个类的成员函数可以操作另一个类的数据成员,我们在下面的代码中增加一类Country,注意观察:

#include?<iostream>???
using?namespace?std;?
class?Internet;?
?
class?Country?
{?
public:?
????Country()?
????{?
????????strcpy(cname,"中国");?
????}?
????void?Editurl(Internet?&temp);//成员函数的声明?
protected:?
????char?cname[30];?
};?
class?Internet?
{???
public:???
????Internet(char?*name,char?*address)???
????{???
????????strcpy(Internet::name,name);???
????????strcpy(Internet::address,address);??
????}?
????friend?void?Country::Editurl(Internet?&temp);//友元函数的声明?
protected:???
????char?name[20];?
????char?address[20];?
};?
void?Country::Editurl(Internet?&temp)//成员函数的外部定义?
{?
????strcpy(temp.address,"edu.cndev-lab.com");?
????cout<<temp.name<<"|"<<temp.address<<endl;?
}?
void?main()?
{?
????Internet?a("中国软件开发实验室","www.cndev-lab.com");?
????Country?b;?
????b.Editurl(a);?
????cin.get();?
}

?

4.整个类也可以是另一个类的友元,该友元也可以称做为友类。友类的每个成员函数都可以访问另一个类的所有成员。
  示例代码如下:

#include?<iostream>???
using?namespace?std;?
class?Internet;?
?
class?Country?
{?
public:?
????Country()?
????{?
????????strcpy(cname,"中国");?
????}?
????friend?class?Internet;//友类的声明?
protected:?
????char?cname[30];?
};?
class?Internet?
{?
public:???
????Internet(char?*name,char?*address)???
????{???
????????strcpy(Internet::name,name);???
????????strcpy(Internet::address,address);??
????}?
????void?Editcname(Country?&temp);?
protected:???
????char?name[20];?
????char?address[20];?
};?
void?Internet::Editcname(Country?&temp)?
{?
????strcpy(temp.cname,"中华人民共和国");??
}?
void?main()?
{?
????Internet?a("中国软件开发实验室","www.cndev-lab.com");?
????Country?b;?
????a.Editcname(b);?
????cin.get();?
}

  在上面的代码中我们成功的通过Internet类Editcname成员函数操作了Country类的保护成员cname。

   在编程中,我们使用友元的另外一个重要原因是为了方便重载操作符的使用,这些内容我们将在后面的教程着重讨论!

?

热点排行