gpt4 book ai didi

c++ - C++中对象的处理方式

转载 作者:行者123 更新时间:2023-11-28 04:22:08 25 4
gpt4 key购买 nike

每次当我运行代码时,编译器都会给出对象已经定义的错误,我不知道我在整个代码中哪里犯了错误。

即使我在一个文件中完成所有这些工作,它也能正常工作,但我不知道为什么它不能以这种方式工作,任何人都可以帮助我解决我在这段代码中做错的地方。

如有任何帮助,我们将不胜感激。谢谢

学生.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

学生.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;
}

Problems occured

这是我编写流代码的部分。

writerstr.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 文件)中定义非内联构造函数会导致错误。

可能的解决方案:

  1. 将构造函数定义移动到类中,或者
  2. 内联关键字作为前缀,或者
  3. 将其移动到其中一个 cpp 文件

另一个问题:您包含 cpp 文件,这会通过一次又一次地声明相同的内容而导致更多问题。只需将它们添加到项目/makefile/etc,而不是包括:

#include "writestr.cpp"

关于c++ - C++中对象的处理方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55215921/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com