每当我运行代码编译器时都会给出已经定义的对象的错误,我不知道在整个代码中我在哪里犯错误。
即使我在一个文件中执行此操作它仍在工作,但我不知道为什么它不能以这种方式工作,任何人都可以帮助我,因为我在这段代码中犯了错误。
任何帮助,将不胜感激。谢谢
student.h
ifndef STUDENT
define STUDENT
class Student
{
public:
char student_no[10];
char student_name[20];
char student_address[20];
char student_score[20];
Student();
};
Student::Student()
{//constructor
student_no[0] = 0; student_name[0] = 0; student_address[0] = 0;
student_score[0] = 0;
}
#endif
student.cpp
using namespace std;
#include "writestr.cpp"
#include <fstream>
#include <string.h>
#include <iostream>
int main(){
char filename[20];
Student s;
cout << "Enter the file name:" << flush;
cin.getline(filename, 19);
ofstream stream(filename, ios::out);
if (stream.fail()) {
cout << "File open failed!" << endl;
return 0;
}
while (1) {
cin >> s; // read fields of person
if (strlen(s.student_name) == 0) break;
// write person to output stream
stream << s; // write fields of person
}
return 1;
}
这是我编写流代码的部分。
writestr.cpp
using namespace std;
#include "readper.cpp"
#include <fstream>
#include <string.h>
#include <iostream>
ostream & operator << (ostream & stream, Student & s)
{ // insert fields into file
stream << s.student_name << s.student_no << s.student_address
<< s.student_score;
return stream;
}
readper.cpp
using namespace std;
#include "student.h"
#include <fstream>
#include <string.h>
#include <iostream>
istream & operator >> (istream & stream, Student & s)
{ // read fields from input
cout << "Enter Student Name, or <cr> to end: " << flush;
stream.getline(s.student_name, 30);
if (strlen(s.student_name) == 0) return stream;
cout << "Enter Student Name: " << flush; stream.getline(s.student_name, 30);
cout << "Enter Student Id Number: " << flush; stream.getline(s.student_no, 30);
cout << "Enter Address: " << flush; stream.getline(s.student_address, 30);
cout << "Enter Score: " << flush; stream.getline(s.student_score, 15);
return stream;
}
您正在定义(而不仅仅是声明)头文件中的构造函数:
Student::Student()
{//constructor
student_no[0] = 0; student_name[0] = 0; student_address[0] = 0;
student_score[0] = 0;
}
这在包含头文件的每个cpp中一次又一次地定义构造函数(生成代码)。由于此定义没有inline
关键字,因此它可能在程序中只存在一次,而不是多次。在多个转换单元(cpp文件)中定义非内联构造函数会导致错误。
可能的解决方案:
inline
关键字作为前缀,或者另一个问题:你包括cpp文件,通过一次又一次地声明同样的事情会导致更多的问题。只需将它们添加到project / makefile / etc,而不是包括:
#include "writestr.cpp"