| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 838 人关注过本帖
标题:求visual c++完整版 可以解决友元函数的问题
只看楼主 加入收藏
wei1987
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2007-12-11
收藏
 问题点数:0 回复次数:4 
求visual c++完整版 可以解决友元函数的问题
求visual c++完整版 可以解决友元函数的问题
搜索更多相关主题的帖子: visual 函数 
2007-12-17 20:48
aipb2007
Rank: 8Rank: 8
来 自:CQU
等 级:贵宾
威 望:40
帖 子:2879
专家分:7
注 册:2007-3-18
收藏
得分:0 
还没分清工具和语言哦。

Fight  to win  or  die...
2007-12-17 21:58
无缘今生
Rank: 2
等 级:新手上路
威 望:3
帖 子:523
专家分:7
注 册:2007-6-25
收藏
得分:0 
难道你现在用的工具不能处理友元???

时不再来!!!
2007-12-19 12:29
leeco
Rank: 4
等 级:贵宾
威 望:10
帖 子:1029
专家分:177
注 册:2007-5-10
收藏
得分:0 
VC++这方面的确存在问题,楼上两位的VC++都没问题吗?
程序代码:
#include <iostream>
using namespace std;

class Node{
    int x;
public:
    Node(){}
    Node(int n){x=n;}
    friend ostream& operator << (ostream& o, const Node& n);
};

ostream& operator << (ostream& o, const Node& n)
{
    return o<<n.x;
}

int main()
{
    Node x(123);
    cout<<x<<endl;
    //system("pause");
}
以上这段完全没问题的代码在VC++中就通不过

--------------------Configuration: main - Win32 Debug--------------------
Compiling...
main.cpp
D:\My Documents\我的C++工程\temp\main.cpp(14) : error C2248: 'x' : cannot access private member declared in class 'Node'
        D:\My Documents\我的C++工程\temp\main.cpp(5) : see declaration of 'x'
D:\My Documents\我的C++工程\temp\main.cpp(20) : error C2593: 'operator <<' is ambiguous
D:\My Documents\我的C++工程\temp\main.cpp(22) : warning C4508: 'main' : function should return a value; 'void' return type assumed
Error executing cl.exe.

main.obj - 2 error(s), 1 warning(s)
2007-12-22 13:59
zjl138
Rank: 1
等 级:新手上路
威 望:1
帖 子:788
专家分:0
注 册:2007-11-12
收藏
得分:0 
我的也会这样!正不知怎么好,望高手指点!!!
大家都说要用#INCLUDE《IOSTREAM》这个头文件好,但处理友元好像有问题。不知是不是???在VC++6。0中!!!

i like linux...
2007-12-24 12:42
快速回复:求visual c++完整版 可以解决友元函数的问题
数据加载中...
 
   



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

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