Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2506231
  • 博文数量: 308
  • 博客积分: 5547
  • 博客等级: 大校
  • 技术积分: 3782
  • 用 户 组: 普通用户
  • 注册时间: 2009-11-24 09:47
个人简介

hello world.

文章分类

全部博文(308)

分类: C/C++

2010-11-25 14:29:33

    将例5.2的程序片段补充和改写程一个完整,正确的程序,用私有继承方式。在程序中应包括输入数据的函数,在程序运行时输入num,name,sex,age,addr的值,程序应输出以上5个数据的值。

#include <iostream>
using namespace std;
class Student
{
    public:
    void get_value()
    {
         cin >> num >> name >> sex;
    }
    
    void display()
    {
         cout << "num:" << num << endl;
         cout << "name:" << name << endl;
         cout << "sex:" << sex << endl;
    }
    
    private:
    int num;
    string name;
    char sex;
};

class Student1:private Student
{
    public:
    void display_1()
    {
         display();
         cout << "age:" << age << endl;
         cout << "address:" << addr << endl;
    }
    
    void get_value1()
    {
         get_value();
         cin >> age >> addr;
    }
    private:
    int age;
    string addr;
};

int main()
{
    Student1 stu;
    stu.get_value1();
    stu.display_1();
    system("pause");
    return 0;
}


阅读(3146) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~