钱能C++教材习题答案十四



文件信息
文件来源  
文件作者  
更新时间 2005-5-8 10:52:38 
添加编辑 viewsnake 

辅助信息
打印功能 打印本文
背景颜色 杏黄 秋褐 胭红 芥绿 天蓝 雪青 炭灰 奶白
字体大小 特大号字 大号字 中号字 小号字
免责声明 本网站所有文章均来自网络,仅提供预览形式,不提供纸张形式,若涉及到版权的文章,请购买正版,毕竟在电脑上看也不舒服啊,呵呵,这是viewsnake个人网站,纯粹交流学习资料的地方。无商业行为。
选择更多免费考研资料:
阅读正文内容
                       }
                        else
                        {
                                float y;
                                cout<<"请输入存款数量:";
                                cin>>y;
                                p->Withdrawal(y);
                        }
                }
        }
                //类似        if (i==2)
}
}

第17章

//************
//***17.1*****
//*Daiyuebing*
//************
# include <iostream.h>

class A
{
public:
        A()
        {
                pA=0;
        }
        int GetpA()
        {
                return pA;
        }
        void SetpA(int a)
        {
                pA=a;
        }
private:
        int pA;
};

class B:virtual public A
{
public:

        int OnB()
        {
                return GetpA();
        }
};

class C:virtual public A,public B
{

        int Sc()
        {
                return GetpA();
        }
};

void main()
{
        A x;
        B y;
        C z;
        cout<<x.GetpA()<<endl;
        cout<<y.GetpA()<<endl;
        cout<<z.GetpA()<<endl;
}

 

//************
//***17.2*****
//*Daiyuebing*
//************
class father
{
public:
        drive();
protected:
        repareTV();

};

class mother
{
public:
        song();
private:
        work();
};

class child:public father,public mother
{
public:
        playtable();

};

/*修改
        protected:
                repareTV();

        为
        public:
                repareTV();
*/



<<<返回上一页 <<<返回网站首页
<<<您的位置:首页>考研经验>考研笔记>计算机工程笔记>正文