鱼C论坛

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

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

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

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

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

x
  1. #include<iostream>
  2. #include<string>

  3. using namespace std;

  4. class Student
  5. {
  6. public:
  7.         Student(int n,string nam,char s)
  8.         {
  9.                 num = n;
  10.                 name = nam;
  11.                 sex = s;
  12.                 cout << "Constructor called." << endl;
  13.         }
  14.         ~Student()
  15.         {
  16.                 cout << "Constructor called." << endl;
  17.         }
  18.         void display()
  19.         {
  20.                 cout << "num:" << num << endl;
  21.                 cout << "name:" << name << endl;
  22.                 cout << "sex:" << sex << endl << endl;
  23.         }
  24. private:
  25.         int num;
  26.         char name[10];
  27.         char sex;
  28. };

  29. int main()
  30. {
  31.         Student stu1(10086,"Zhang_wu_ji",'M');
  32.         stu1.display();
  33.         Student stu2(10000,"Zhao_ming",'F');
  34.         stu2.display();

  35.         return 0;
  36. }
复制代码
最后提示“error C2440: “=”: 无法从“std::string”转换为“char [10]”,这需要怎么修改才行
519ABDBC33129CF57B1EB464180C6FDA.png
小甲鱼最新课程 -> https://ilovefishc.com
回复

使用道具 举报

发表于 2016-8-24 20:10:36 | 显示全部楼层
name=nam.c_str()
好像是这样
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-6-12 21:23

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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