posts - 16, comments - 1, trackbacks - 0, articles - 0
  IT博客 :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

友元函数的作用

Posted on 2010-09-26 15:42 Mr.雷 阅读(1855) 评论(0)  编辑 收藏 引用 所属分类: C/C++程序设计

友元是一种定义在类外部的普通函数,但它需要在类体内进行说明,为了与该类的成员函数加以区别,在说明时前面加以关键字friend。友元不是成员函数,但是它可以访问类中的私有成员。友元的作用在于提高程序的运行效率,但是,它破坏了类的封装性和隐藏性,使得非成员函数可以访问类的私有成员。  

友元函数 通过对象的引用可以直接 访问私有变量,(不能直接访问私有变量),而一般的函数则不可以。

#include<iostream.h>

class point

{

public:

friend void bb(point cc);

void dd(point cc);

private:

 int aa;

};


void bb(point cc)

{int d = cc.aa;}     //通过对象的引用可以直接访问

void dd(point cc)

{int d=cc.aa;}        //不可以直接访问

下面给出一个比较实用的例子-重载运算符“+”:

 1 #include "stdafx.h"
2 #include <iostream>
3
4 class Complex //复数类
5 {
6 private://私有
7 double real;//实数
8 double imag;//虚数
9 public:
10 Complex(double real=0,double imag=0)
11 {
12 this->real=real;
13 this->imag=imag;
14 }
15 friend Complex operator+(Complex &com1, Complex &com2);//友元函数重载双目运算符+
16 void showSum();
17 };
18
19
20 friend Complex operator+(const Complex &com1,const Complex &com2)//友元运算符重载函数
21 {
22 return Complex(com1.real+com2.real,com1.imag+com2.imag);
23 }
25 void Complex::showSum()
26 {
27 std::cout<<real;
28 if(imag>0)
29 std::cout<<"+";
30 if(imag!=0)
31 std::cout<<imag<<"i"<<std::endl;
32 }
33
34 int main()
35 {
36 Complex com1(10,10),com2(20,-20),sum;
37 sum=com1+com2;//或sum=operator+(com1,com2)
38 sum.showSum();//输出复数相加结果
39
40 return 0;
41 }

 

 

只有注册用户登录后才能发表评论。