鱼C论坛

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

C++构造函数问题,谭浩强第三版9.5例题:

[复制链接]
发表于 2016-8-24 20:04:00 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<iostream>
#include<string>

using namespace std;

class Student
{
public:
        Student(int n,string nam,char s)
        {
                num = n;
                name = nam;
                sex = s;
                cout << "Constructor called." << endl;
        }
        ~Student()
        {
                cout << "Constructor called." << endl;
        }
        void display()
        {
                cout << "num:" << num << endl;
                cout << "name:" << name << endl;
                cout << "sex:" << sex << endl << endl;
        }
private:
        int num;
        char name[10];
        char sex;
};

int main()
{
        Student stu1(10086,"Zhang_wu_ji",'M');
        stu1.display();
        Student stu2(10000,"Zhao_ming",'F');
        stu2.display();

        return 0;
}
最后提示“error C2440: “=”: 无法从“std::string”转换为“char [10]”,这需要怎么修改才行
519ABDBC33129CF57B1EB464180C6FDA.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2016-8-24 20:10:36 | 显示全部楼层
name=nam.c_str()
好像是这样
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-7-7 17:32

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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