类定义 - 两个文件

Class definition- two files

本文关键字:两个 文件 定义      更新时间:2023-10-16

我尝试制作可以创建学生新对象的类。我对类主体(学生.cpp)和类(学生.h)的定义有一些问题。

Error:
In file included from student.cpp:1:
student.h:21:7: warning: no newline at end of file
student.cpp:6: error: prototype for `Student::Student()' does not match any in class `Student'
student.h:6: error: candidates are: Student::Student(const Student&)
student.h:8: error:                 Student::Student(char*, char*, char*, char*, int, int, bool)

学生.cpp

 //body definition  
    #include "student.h"
    #include <iostream>
    Student::Student()
    {
    m_imie = "0";
    m_nazwisko = "0";
    m_pesel = "0";
    m_indeks = "0";
    m_wiek = 0;
    m_semestr = 0;
    m_plec = false;
}

学生.h

//class definition without body
#include <string.h>
class Student {
    //konstruktor domyslny
    Student (char* imie, char* nazwisko, char* pesel, char* indeks, int wiek, int semestr, bool plec): 
    m_imie(imie), m_nazwisko(nazwisko), m_pesel(pesel), m_indeks(indeks), m_wiek(wiek), m_semestr(semestr), m_plec(plec)
    {}  
        private:
        char* m_imie;
        char* m_nazwisko;
        char* m_pesel;
        char* m_indeks;
        int m_wiek;
        int m_semestr;
        bool m_plec;
};

cpp 文件中的构造函数与标头中的构造函数不匹配。cpp 中的每个构造函数/解构函数/方法实现都应首先在标头中的类中定义。

如果你想有 2 个构造函数 - 1 个没有参数,一个有很多参数。您需要在标头中添加构造函数的定义。

//class definition without body
#include <string.h>
class Student {
    //konstruktor domyslny
    Student (char* imie, char* nazwisko, char* pesel, char* indeks, int wiek, int semestr, bool plec): 
    m_imie(imie), m_nazwisko(nazwisko), m_pesel(pesel), m_indeks(indeks), m_wiek(wiek), m_semestr(semestr), m_plec(plec)
    {}  //here really implementation made
    Student();  //one more constructor without impementation
        private:
        char* m_imie;
        char* m_nazwisko;
        char* m_pesel;
        char* m_indeks;
        int m_wiek;
        int m_semestr;
        bool m_plec;
};

在头文件中,您声明Student只有一个构造函数,其中包含所有写入的参数,但没有默认的构造Student()构造函数,您应该将其添加到标头中:

class Student {
  Student();
  Student(char* imie, char* nazwisko ... ) {}
};

您为 Student 构造函数编写了一个不接受任何参数的主体:

Student::Student( /* NO PARAMETERS */ )

但是这个函数,Student(),不在类定义中。
这将生成错误:

 prototype for `Student::Student()' does not match any in class `Student'

你需要写:

class Student {
    public:
        Student();  /* NOW it is declared as well as defined */
    [... all the other stuff ...]
}; 

现在,既有Student()的原型,也有Student(/* 7 parameters */)


另一个错误的修复很简单:

student.h:21:7: warning: no newline at end of file 

解决方法是在文件末尾放置换行符! :-)