缺少C ++显式类型(' int'假设)3

时间:2016-06-25 01:17:05

标签: c++

enter image description here

在display()和evaluate()下,我得到一个错误代码,说明缺少显式类型(' int'假设)。 我坚持这一部分,我想知道如何解决这个问题,我将不胜感激。

#pragma warning
#include <iostream>
using namespace std;
class poly {
    int degree;
    int* coeff;

public:
    poly(int);
    poly(poly&);
    poly();
    ~poly();
    display();
    evaluate(int);
    poly operator+(poly&);
    poly operator*(poly&);
}; 

1 个答案:

答案 0 :(得分:1)

而不是

tank auth

display();

同样适用于void display();

提示:您可以使用AStyle等免费工具通过适当的缩进格式化代码。

提示:The Definitive C++ Book Guide and List提供了很好的C ++教科书列表。