在头文件中重新定义 class

Redefinition of a class in a header file

我试图用 g++ 编译我的代码,但它抛出了这个编译器错误:

Enrollment.h:3:7: error: redefinition of class sict::Enrollment
Enrollment.h:3:7: error: previous definition of class sict::Enrollment

我的Enrollment.h:

namespace sict{
class Enrollment{
  private:
    char _name[31];
    char _code[11];
    int _year;
    int _semester;
    int _slot;
    bool _enrolled;
  public:
    Enrollment(const char* name , const char* code, int year, int semester ,  int time );
    Enrollment();
    void set(const char* , const char* , int ,int,  int , bool = false );

    void display(bool nameOnly = false)const;
    bool valid()const;
    void setEmpty();
    bool isEnrolled() const;
    bool hasConflict(const Enrollment &other) const; 
  };

}

有什么办法可以解决这个问题?

问题很可能是您的头文件被(直接和间接)包含在同一个翻译单元中。您应该使用某种方式避免在您的 cpp 中多次包含同一头文件。我更喜欢在头文件的开头使用 #pragma once - 它不是标准的,但所有主要编译器都支持它。否则你可以去找好老的包括守卫:

#ifndef _Enrollment_h_
#define _Enrollment_h_
// Your header contents here
#endif

或附注:

#pragma once
// Your header contents here

你需要使用一些包含守卫。 #pragma once 或:

#ifndef MY_FILE_H
#define MY_FILE_H
    ....
#endif //MY_FILE_H

这是为了防止在每个包含此 header(双重包含)的文件中包含相同的代码。这基本上可以帮助 pre-processor。更多信息 here