记录详情

Compile Error

/in/foo.cc: In member function 'int Date::YearMonthDay()':
/in/foo.cc:23:46: error: no matching function for call to 'Date::isLeap()'
   23 |                 if(month==2) return 28+isLeap();
      |                                        ~~~~~~^~
/in/foo.cc:16:14: note: candidate: 'bool Date::isLeap(int)'
   16 |         bool isLeap(int y)
      |              ^~~~~~
/in/foo.cc:16:14: note:   candidate expects 1 argument, 0 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:21:41
评测时间
2025-03-14 19:21:41
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes