鱼C论坛

 找回密码
 立即注册
查看: 1522|回复: 1

c++问题

[复制链接]
发表于 2015-2-2 13:56:40 | 显示全部楼层 |阅读模式
1鱼币
#include<iostream>
using namespace std;
#include<string.h>
class Person
{
public:
    Person(char *Name,char Sex,int Age)
    {
        strcpy(name,Name);
        sex=Sex;
        age=Age;
        cout<<"The constructor"<<endl;
    }
    ~Person()
    {
        cout<<"The destructor"<<endl;
    }
    void show()
    {
        cout<<"name:"<<name<<endl;
        cout<<"       sex"<<sex<<endl;
        cout<<"       age"<<age<<endl;
    }
protected:
    char name{11};
    char sex;
    int age;
};
class Student:public Person
{
public:
    Student(char *Name,char Sex,int Age,char *Id,char *Date,float Score):Person(name,sex,age)
    {
        strcpy(id,Id);strcpy(date,Date);score=Score;
        cout<<"The constructor of derived"<<endl;
    }
    void StuShow()strcpy(name,Name);

    {
        cout<<"      id"<<id<<endl;
        cout<<"       name"<<name<<endl;
        cout<<"      sex"<<sex<<endl;
        cout<<"      age"<<age<<endl;
        cout<<"      enrollment date"<<date<<endl;
        cout<<"       enrollment score"<<score<<endl;
    }
protected:
    char id[12];
    char date[11];
    float score;
};
int main()
{
    Student stu("Mary",'F',19,"2020","20123",680);
    stu.StuShow();
    return 0;
}


说这行 strcpy(name,Name);有问题




QQ截图20150202135553.png

最佳答案

查看完整内容

char name{11} 更改为char name[11]
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2015-2-2 13:56:41 | 显示全部楼层
char name{11} 更改为char name[11]
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-25 15:46

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表