记录详情

Compile Error

/in/foo.cc:23:13: error: 'int PolyList::evaluate(int)' cannot be overloaded with 'int PolyList::evaluate(int)'
   23 |         int evaluate(int x){
      |             ^~~~~~~~
/in/foo.cc:18:13: note: previous declaration 'int PolyList::evaluate(int)'
   18 |         int evaluate(int x){
      |             ^~~~~~~~
/in/foo.cc: In member function 'int PolyList::evaluate(int)':
/in/foo.cc:21:22: error: 'newNode' was not declared in this scope
   21 |                 head=newNode;
      |                      ^~~~~~~
/in/foo.cc:19:21: warning: unused variable 'result' [-Wunused-variable]
   19 |                 int result=0;
      |                     ^~~~~~
/in/foo.cc:20:31: warning: unused variable 'current' [-Wunused-variable]
   20 |                 PolyListNode* current=head;
      |                               ^~~~~~~
/in/foo.cc:22:9: warning: no return statement in function returning non-void [-Wreturn-type]
   22 |         }
      |         ^
/in/foo.cc: In member function 'int PolyList::evaluate(int)':
/in/foo.cc:24:21: warning: unused variable 'result' [-Wunused-variable]
   24 |                 int result=0;
      |                     ^~~~~~

信息

递交者
类型
自测
题目
P1021 OO5-1 一元多项式类的求值
语言
C++
递交时间
2025-03-23 14:59:47
评测时间
2025-03-23 14:59:47
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes