您的位置:首页 > 其它

第十一周 项目0 - 是春哥啊

2015-05-23 21:57 176 查看
问题及代码:

/* 
* Copyright (c) 2014, 烟台大学计算机学院 
* All rights reserved. 
* 文件名称:test.cpp 
* 作    者:宋健 
* 完成日期:2015年 5月 23日 
* 版 本 号:v1.0 
* 
* 问题描述:请在下面程序的横线处填上适当内容,以使程序完整,并使程序的输出为:
Name: 春哥
Grade: 19
 
* 程序输入: 
* 程序输出:时间 
*/ 
#include <iostream>
#include <cstring>
using namespace std;
class Person{
public:
    Person(char* s){
        strcpy(name,s);
    }
    void display( ){
        cout<<"Name: "<<name<<endl;
    }
private:
    char name [20];
};
class Student:public Person//(1)
{
public:
    Student(char* s, int g):Person(s) // (2)
    {grade=g;}
    void display1( ) {
        display();   //  (3)
        cout<<"Grade: "<<grade<<endl;
    }
private:
    int grade;
};
int main( )
{
    Student s("春哥",19);
    s.display1();       //  (4)
    return 0;
}


运行结果:



知识点总结:

多熟悉不同继承类型与不同数据类型不同结合数据的类型,其实也比较好理解。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: