标题:C++问题,求助,急!
取消只看楼主
holy_pigh
Rank: 1
等 级:新手上路
帖 子:17
专家分:5
注 册:2010-12-8
结帖率:100%
已结贴  问题点数:10 回复次数:2 
C++问题,求助,急!
C++问题,求助,急!
下面是代码
#include<iostream.h>
class X; // A
class Y
{
    int y;
public:
    Y(int i)
    {y=i;}
    void Print(X &r);
   
};
class X
{
    int x;
    static int s;
public:
    X(int i)
    {x=i;}
    void Print()
    {cout<<"x="<<x<<','<<"s="<<s<<endl;}
    friend void Y::Print(X &r);
};
int X::s=5;
void Y::Print(X &r)
{cout<<"x="<<r.x<<','<<"y="<<y<<endl;}
void main()
{
    X m(2);
    m.Print();
    Y n(8);
    n.Print(m);
}
一个小小的友元函数问题,如果我把A行删除掉的话,VC++会报错,是不是A行就类似于一个函数的原型声明呢?
还有一个问题就是如果我吧 类X 和类Y 的位置换一下,如下,VC++也会报错,求解释。
#include<iostream.h>
class Y;
class X
{
    int x;
    static int s;
public:
    X(int i)
    {x=i;}
    void Print()
    {cout<<"x="<<x<<','<<"s="<<s<<endl;}
    friend void Y::Print(X &r);
};
class Y
{
    int y;
public:
    Y(int i)
    {y=i;}
    void Print(X &r);
   
};
int X::s=5;
void Y::Print(X &r)
{cout<<"x="<<r.x<<','<<"y="<<y<<endl;}
void main()
{
    X m(2);
    m.Print();
    Y n(8);
    n.Print(m);
}
搜索更多相关主题的帖子: include public friend 
2011-04-11 13:17
holy_pigh
Rank: 1
等 级:新手上路
帖 子:17
专家分:5
注 册:2010-12-8
得分:0 
回复 2楼 Lyone
那第2个问题呢,希望你仔细看,加了 class Y;还是错误的。
2011-04-11 14:02
holy_pigh
Rank: 1
等 级:新手上路
帖 子:17
专家分:5
注 册:2010-12-8
得分:0 
回复 4楼 Lyone
本人愚钝,不懂。。能详细点么,给出第2问的正确的代码吧。
2011-04-11 17:01



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-336275-1-1.html




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

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