herencia_box.java 1.78 KB
Newer Older
1
//import java.time.chrono.ThaiBuddhistChronology;
2

3
//import javax.swing.Box;
4 5 6



7
class box1 {
8 9 10 11 12 13
    float ancho;
    float alto ;
    float profundidad;
    float volumen;


14
   public box1 (float ancho,float alto,float profundidad){
15 16 17 18 19
    this.ancho=ancho;
    this.alto=alto;
    this.profundidad=profundidad;
   }

20
   public box1 (){
21 22 23

   }

24
   public box1 (float ancho){
25 26 27 28 29 30 31 32 33 34 35 36 37 38
    this.ancho=ancho;
    this.alto=ancho;
    this.profundidad=ancho;
    }
   public float calcular_Volumen(){

    this.volumen=this.ancho * this.alto * this.profundidad; 
    return this.volumen;
 }
}




39
class BoxPeso extends box1 {
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
    
    float peso;

    public BoxPeso (float ancho,float alto,float profundidad,float peso){
           super(ancho,alto,profundidad);
           this.peso=peso;

    }  

    public BoxPeso (){
        super();
    }
 
    public BoxPeso (float ancho){
        super(ancho);
     }

}

class Envio extends BoxPeso{

    public Envio (float ancho,float alto,float profundidad,float peso){
       super(ancho,alto,profundidad,peso);
    }

    public Envio(){
      super();
    }

    public Envio(float ancho){
        super(ancho);
    }
}



public class herencia_box {
   
    public static void main(String[] args) {
        // Envio con  4 parametros
       Envio envio1 = new Envio(2,3,4,5);
       System.out.println("El volumen del primer objeto es "+envio1.calcular_Volumen()+" con peso de "+envio1.peso);
        System.out.println("");
       // Envio con 1 parametro
       Envio envio2 = new Envio(2);
       System.out.println("El volumen del segundo objeto es "+envio2.calcular_Volumen());
       System.out.println("");
       //Envio sin parametros 
       Envio envio3 = new Envio();
       System.out.println("El volumen del tercer objeto es "+envio3.calcular_Volumen());
        

    }
    
}