-1

我有 2 个文件,Chrono.cpp 和 Chrono.h。

计时码表

class Appointment {
public:

    Appointment( Date d , string n ) ;
    Appointment() ;

    int get_day() const { return date.d; }
    int get_month() const { return date.m; }
    int get_year() const { return date.y; }
    string get_name() const { return name ; }

    Date date ;
    string name ;

} ;

计时码表

Appointment::Appointment( Date dd , string nn )
    : date( dd ) , name( nn ) 
{ 
    //if(!is_date(yy,mm,dd))throw Invalid(); 
}

我继续收到此错误,或者说它与 .h 文件不匹配的变体。

Chrono.cpp:17:1: error: prototype for āChrono::Appointment::Appointment(Chrono::Date, String)ā does not match any in class āChrono::Appointmentā
Chrono.h:34:7: error: candidates are: Chrono::Appointment::Appointment(Chrono::Appointment&&)
Chrono.h:34:7: error:                 Chrono::Appointment::Appointment(const Chrono::Appointment&)
Chrono.h:42:2: error:                 Chrono::Appointment::Appointment(Chrono::Date, std::string)
Chrono.h:41:2: error:                 Chrono::Appointment::Appointment()

这两个文件都有 #include 字符串,并且 .cpp 文件位于 std 命名空间中。我也尝试在头文件中使用 std::string 。到目前为止,我所做的一切都没有奏效。任何帮助表示赞赏。另请注意,日期在其他地方定义并且工作正常。

4

1 回答 1

1

你拼错了“字符串”。在您的代码中它说string,但在它说的错误中String

于 2013-04-27T23:02:54.263 回答