鱼C论坛

 找回密码
 立即注册
查看: 542|回复: 2

[已解决]为什么MyClass zhangsan(64,2000.00,"张三");64会报错

[复制链接]
发表于 2020-6-14 14:38:49 | 显示全部楼层 |阅读模式

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

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

x
#pragma warning( disable : 4996)
#include "iostream"
#include <string>
using namespace std;


class MyClass
{
        int age;
        float money;
        char* name;

public:
        MyClass();
        MyClass(int age,float money,char* name);
        MyClass(const MyClass &);
        ~MyClass();
        char* getname();
        float getmoney();
        int getage();
        void setmoney(float num);
        void setage(int age);

private:

};

MyClass::MyClass()
{
        age = 20;
        money = 100000.00;
        name = new char[20];
        std:: strcpy(name,"无名氏");
}
MyClass::MyClass(int age1, float money1, char* name1)
{
        age = age1;
        money = money1;
        name = new char[20];
        std::strcpy(name, name1);
}
MyClass::MyClass(const MyClass &AnotherMyClass)
{
        age = AnotherMyClass.age;
        money = AnotherMyClass.money;
        name = new char[strlen(AnotherMyClass.name)+1];
        std::strcpy(name, AnotherMyClass.name);
}
MyClass::~MyClass( )
{
        if (name != NULL) {
                delete name;
        }
}
char *MyClass::getname()
{
        return name;
}
float MyClass::getmoney() {
        return money;
}
int MyClass::getage() {
        return age;
}
void MyClass::setage(int age1) {
        if (age1 <=0) {
                cout << "设置的年龄不合法" << endl;
        }
        else
        {
                age = age1;
        }
}
void MyClass::setmoney(float num1) {
        if (num1 < 0) {
                cout << "设置的薪水不合法" << endl;
        }
        else
        {
                money = num1;
        }
}
void main() {
       
       
       
        MyClass zhangsan(64,2000.00,"张三");
        cout << zhangsan.getage() << endl;
        cout << zhangsan.getmoney() << endl;
        cout << zhangsan.getname() << endl;

}

最佳答案
2020-6-14 18:50:14
不应该是
#include<cstring>

#include<string.h>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-6-14 18:50:14 | 显示全部楼层    本楼为最佳答案   
不应该是
#include<cstring>

#include<string.h>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-6-14 21:51:36 | 显示全部楼层
这个应该跟你的标准选的有关, 我这边只需要把void main改为int main 然后return 0即可编译通过并且成功运行
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-13 15:36

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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