记录详情

Compile Error

/in/foo.cc: In member function 'int Date::Diff(Date&)':
/in/foo.cc:52:25: error: no matching function for call to 'Date::Pass()'
   52 |             int num=Pass();
      |                     ~~~~^~
/in/foo.cc:33:13: note: candidate: 'int Date::Pass(int, int, int)'
   33 |         int Pass(int y,int m,int d)
      |             ^~~~
/in/foo.cc:33:13: note:   candidate expects 3 arguments, 0 provided
/in/foo.cc:55:29: error: no matching function for call to 'Date::YearDay()'
   55 |             num += d.YearDay()-d.Pass();
      |                    ~~~~~~~~~^~
/in/foo.cc:48:13: note: candidate: 'int Date::YearDay(int)'
   48 |         int YearDay(int y) { return 365+isLeap(y); }
      |             ^~~~~~~
/in/foo.cc:48:13: note:   candidate expects 1 argument, 0 provided
/in/foo.cc:55:38: error: no matching function for call to 'Date::Pass()'
   55 |             num += d.YearDay()-d.Pass();
      |                                ~~~~~~^~
/in/foo.cc:33:13: note: candidate: 'int Date::Pass(int, int, int)'
   33 |         int Pass(int y,int m,int d)
      |             ^~~~
/in/foo.cc:33:13: note:   candidate expects 3 arguments, 0 provided

信息

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