记录详情

Compile Error

/in/foo.cc: In member function 'int Date::YearMonthDay(int, int)':
/in/foo.cc:38:42: error: no matching function for call to 'Date::isLeap(int&)'
   38 |                 if(m==2) return 28+isLeap(y);
      |                                    ~~~~~~^~~
/in/foo.cc:16:14: note: candidate: 'bool Date::isLeap()'
   16 |         bool isLeap()
      |              ^~~~~~
/in/foo.cc:16:14: note:   candidate expects 0 arguments, 1 provided
/in/foo.cc: In member function 'int Date::YearDay(int)':
/in/foo.cc:43:47: error: no matching function for call to 'Date::isLeap(int&)'
   43 |         int YearDay(int y) { return 365+isLeap(y); }
      |                                         ~~~~~~^~~
/in/foo.cc:16:14: note: candidate: 'bool Date::isLeap()'
   16 |         bool isLeap()
      |              ^~~~~~
/in/foo.cc:16:14: note:   candidate expects 0 arguments, 1 provided
/in/foo.cc: In member function 'int Date::Diff(Date&)':
/in/foo.cc:47:25: error: no matching function for call to 'Date::Pass()'
   47 |             int num=Pass();
      |                     ~~~~^~
/in/foo.cc:28:13: note: candidate: 'int Date::Pass(int, int, int)'
   28 |         int Pass(int y,int m,int d)
      |             ^~~~
/in/foo.cc:28:13: note:   candidate expects 3 arguments, 0 provided
/in/foo.cc:50:29: error: no matching function for call to 'Date::YearDay()'
   50 |             num += d.YearDay()-d.Pass();
      |                    ~~~~~~~~~^~
/in/foo.cc:43:13: note: candidate: 'int Date::YearDay(int)'
   43 |         int YearDay(int y) { return 365+isLeap(y); }
      |             ^~~~~~~
/in/foo.cc:43:13: note:   candidate expects 1 argument, 0 provided
/in/foo.cc:50:38: error: no matching function for call to 'Date::Pass()'
   50 |             num += d.YearDay()-d.Pass();
      |                                ~~~~~~^~
/in/foo.cc:28:13: note: candidate: 'int Date::Pass(int, int, int)'
   28 |         int Pass(int y,int m,int d)
      |             ^~~~
/in/foo.cc:28:13: note:   candidate expects 3 arguments, 0 provided

信息

递交者
类型
自测
题目
P1005 OO1-4 日期类Date
语言
C++
递交时间
2025-03-14 19:20:58
评测时间
2025-03-14 19:20:58
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes