im a programming newbie studying computerscience in second semester. sorry for the german language program. but i hope it won't be a problem understanding it. it basically is about converting currencies.
My question is: what is the function of a class as a variable/data type here? i mean in the class dm (deutsche mark) you have the constructor with the given parameter (Euro a). should i think of "a" as a new object of the class euro? or what is it exactly? i saw this kind of variables in many occasions, apparently it is quite common. i hope someone can help.
thanks!
Mel
public abstract class waehrung {
public abstract double dollarBetrag();
}
public class Euro extends waehrung {
private static double kurs = 1;
private double wert;
public Euro(double wert){
this.wert = wert;
}
public double dollarBetrag(){
return wert*kurs;
}
public double euroBetrag(){
return wert;
}
public static void setEuroKurs(double Kurs){
kurs = kurs;
}
}
class DM extends Euro{
public DM (double dm){
super(dm/1.95583);
}
public DM(Euro a){
super(a.euroBetrag());
}
public double waehrungsBetrag() {
return euroBetrag()*1.95583;
}
}
Note that
DM
is a subclass ofEuro
, and in its constructorit calls to
a.eurobetrag()
and pass it to the superclass constructor:therefore,
a
is not a variable ofDM
class, it's just used to get a valuea.euroBetrag()
and then assigns it to the attributewert
: