丶浅唱 发表于 2014-8-14 20:02:35

小甲鱼 友元类我表示非常看不懂。大神们进来帮帮我

#include<iostream.h>
#include<string.h>
class Y;
class X
{
        int x;
        char *strx;
public:
        X(int a,char *str)
        {
                x=a;
                strx=new char;
                strcpy(strx,str);
        }
        void show(Y &ob);

};
class Y
{
        int y;
        char *stry;
public:
        Y(int b,char *str)
        {
                y=b;
                stry=new char;
                strcpy(stry,str);
        }
        friend void X::show(Y &ob);
};
void X::show(Y &ob)
{
        cout<<"the string of X is:"<<strx<<endl;
        cout<<"the string of Y is:"<<ob.stry<<endl;
}
void main()
{
        X a(10,"stringx");
        Y b(10,"stringy");
        a.show(b);
}



今天弄了一天的友元类了,在遇到这个代码都看不懂! 特别是(Y &ob)中的那个ob是哪里出来的? 这句到底想表达什么东西想不明白还有最后一句a.show(b)是怎么去实现的??? 一大堆问题求大神救救我。。。在这样下去都不想学了。。。。求大神们帮帮我吧 谢谢谢谢!!

啃啃 发表于 2014-8-15 23:54:05

哦说的那个是函数的形参,坚持就是胜利

黑暗漩涡 发表于 2014-8-16 06:11:04

回帖是一种美德
页: [1]
查看完整版本: 小甲鱼 友元类我表示非常看不懂。大神们进来帮帮我