C++显示error C2664:,求解决

#include"stdafx.h"#include"stdio.h"#include<iostream>#include<string>usingnamespacest... #include "stdafx.h"
#include "stdio.h"
#include <iostream>
#include <string>
using namespace std;
class STU
{
private:
int STU_number;
int STU_age;
char *STU_name;
char *STU_sex;
public:
STU();
STU(int a,int b,char *c,char *d);
STU(const STU &s);
void GetStuData();
protected:
};
STU::STU(const STU &s)
{
STU_number=s.STU_number;
STU_age=s.STU_age;
STU_name=s.STU_name;
STU_sex=s.STU_sex;
}
STU::STU(int a,int b,char *c,char *d)
{
STU_number=a;
STU_age=b;
STU_name=c;
STU_sex=d;
};
void STU::GetStuData()
{
cout<<"名字"<<STU_name<<endl;
cout<<"学号"<<STU_number<<endl;
cout<<"年龄"<<STU_age<<endl;
cout<<"性别"<<STU_sex<<endl;
}
int main(int argc, char* argv[])
{
STU s(3,22,'wzy','man');
s.GetStuData();
return 0;
}
error C2664: '__thiscall STU::STU(int,int,char *,char *)' : cannot convert parameter 3 from 'const int' to 'char *'
展开
 我来答
人人顺风顺水
2019-04-19 · TA获得超过164个赞
知道小有建树答主
回答量:315
采纳率:77%
帮助的人:114万
展开全部
创建s时第三第四个参数不能用单引号,要用表示字符串的双引导号
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式