|
Lösung: Polymorphismus in Java |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class Kugel {
public double Volumen(int r) { return (4/3*Math.PI)*(Math.pow(r,3)); } public double Volumen(double r) { return (4/3*Math.PI)*(Math.pow(r,3)); } public double Volumen(long r) { return (4/3*Math.PI)*(Math.pow(r,3)); } public double Volumen(float r) { return (4/3*Math.PI)*(Math.pow(r,3)); }
}
by Christof Rabensteiner
|
|
|
|
|
|
|
|
|
Letzte Änderung: 08.02.2007
© Pädagogisches Institut für die deutsche Sprachgruppe
- Bozen. 2000 -
|
|
|
|
|
|
|
|
|