我在理解如何将构造函数与以下类一起使用时遇到问题
class Polynomial{
private:
typedef struct term{
double coef;
unsigned deg;
struct term * next;
}term_t;
typedef struct term *Term;
typedef struct term *Poly;
public:
Polynomial(); //Constructor
~Polynomial(); //Destructor
Poly newPoly(void);
我如何分配构造函数?并且 Poly newPoly(void) 应该返回没有项的多项式。我很难理解如何在多项式中为这些函数使用这个特定的结构。