| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2402 人关注过本帖
标题:没有与参数列表匹配的构造函数Student::Student
取消只看楼主 加入收藏
Ling_Yan
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2019-6-19
结帖率:0
收藏
已结贴  问题点数:20 回复次数:1 
没有与参数列表匹配的构造函数Student::Student
#include <iostream>
#include<cstdio>
#include<cstdlib>
#include<Windows.h>
using namespace std;
class Student{
public:
    int age;
    char name[20];
    int Chinese;
    int English;
    int Math;
    Student(int age, char name[20], int Chinese, int English, int Math);
    void WhileGetchar(char name[20]);
    void PrintStudent();
};
Student::Student(int _age, char _name[20], int _Chinese, int _English, int _Math) {
    age = _age;
    name[20] = _name[20];
    Chinese = _Chinese;
    English = _English;
    Math = _Math;
}
void Student::WhileGetchar(char name[20]) {
    int i = -1;
    while (name[i] != '\n') {
        i++;
        name[i] = getchar();
    }
}
void Student::PrintStudent() {
    cout << age << endl << name << endl << Chinese << endl << English << endl << Math << endl;
}

int main()
{
    int age, Math, Chinese, English;
    cin >> age >> Math >> Chinese >> English;
    Student student(age,"**_***",Chinese,English,Math);//报错在这一行
    student.WhileGetchar(student.name);
    student.PrintStudent();
    return 0;
}
搜索更多相关主题的帖子: Student name int Chinese Math 
2019-06-19 20:45
Ling_Yan
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2019-6-19
收藏
得分:0 
回复 2楼 rjsp
谢谢
2019-06-20 09:16
快速回复:没有与参数列表匹配的构造函数Student::Student
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017519 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved