blikk info infothek forum galerie sitemap

Lösung: Polymorphismus in Java

anfang zurueck weiter ende nach oben
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







nach oben
punkt   seitenbereich schließen

Links

Aufgabenstellung
Theorie: Polymorphie