我正在尝试求和,但我总是得到那个类型错误。OperateurBinair 类接受两个 Constante 类型的参数,Constante 是我在其中创建值的类(type = double )。
public class Plus extends OperateurBinair {
Constante Left;
Constante Right ;
Constante Somme ;
Plus() {
super();
Left = new Constante();
Right = new Constante();
}
Plus(Constante x , Constante y) {
super(x,y);
Left=x;
Right=y;
}
Constante addition() {
return Left + Right;
}
}