hallo an alle!
ich schreibe gerade eine c# code für polynome zweiten Grades(ax^2+bx+c).ich möchte für die klasse poly2 Operatormethoden zur Behandlung der operationen aus dem Tester-programm definieren, aber weiss es nicht wie ich das machen kann.
kann bitte jemand mir helfen? hier sieht mein code aus:
class Poly2
{
//datamember
public double a;
public double b;
public double c;
//konstruktoren
public Poly2(double a, double b, double c)
{
this.a = a;
this.b = b;
this.c = c;
}
public Poly2(Poly2 obj)
{
a = obj.a;
b = obj.b;
c = obj.c;
}
public Poly2()
{
this.a = 0;
this.b = 0;
this.c = 0;
}
//operatoren
//public static Poly2 operator +(dou)
//{
//}
}
//tester-programm
class Program
{
static void Main(string[] args)
{
Poly2 u = new Poly2(1.0,2.0,3.0);
Poly2 v = new Poly2(4.0,5.0,6.0);
Poly2 w = new Poly2(u);
Poly2 z = new Poly2();
Console.WriteLine(u);
z = 3.0 * u + v - w;
Console.WriteLine(z);
Console.WriteLine(z);
Console.WriteLine(z);
Console.WriteLine(z.ToString());
Console.WriteLine(z);
}
}
zu ausgabe, möchte ich gerne mit der methode public virtual string ToString() in form: ax^2+bx+c
Danke im voraus