| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 627 人关注过本帖
标题:友元函数的实现位置
只看楼主 加入收藏
meweiwei
Rank: 1
来 自:广东省茂名市
等 级:新手上路
帖 子:42
专家分:0
注 册:2007-5-15
收藏
 问题点数:0 回复次数:2 
友元函数的实现位置
按我个人的理解,友元函数不是类的成员函数,所以当把类B的一个函数F()声明为类A的友元时,函数的实现要在类A和类B之后实现.
请问我这种理解对吗?
为什么当把一个普通函数FUN()声明为类A的友元函数时,友元函数FUN()却可以在类A内实现?
搜索更多相关主题的帖子: 友元 函数 位置 FUN 声明 
2007-06-10 20:05
meweiwei
Rank: 1
来 自:广东省茂名市
等 级:新手上路
帖 子:42
专家分:0
注 册:2007-5-15
收藏
得分:0 

怎么没有人回复我啊?

2007-06-12 11:56
HJin
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:401
专家分:0
注 册:2007-6-9
收藏
得分:0 

try the following source code. I added only minimal comments. Good luck!


[CODE]#include <iostream>

using namespace std;
// This is a delcaration, but not a definition.
class A; // forward declaration (1)
class B
{
public:
void F();
void F2(A& a); // (1) is necessary since we need to know type A here
};

void B::F() // this needs type B to be defined
{
cout<<"B::F() called.\n";
}


class A
{
friend void B::F();
friend void B::F2(A& a);
private:
int i;
};
void B::F2(A& a) // this nees type both type B and A to be defined
{
a.i = 100;
cout<<"B::F2() called.\n";
}
int main(int argc, char** argv)
{
A objA;
B objB;
objB.F();
objB.F2(objA);
return 0;
}[/CODE]


I am working on a system which has no Chinese input. Please don\'t blame me for typing English.
2007-06-12 12:10
快速回复:友元函数的实现位置
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015427 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved