// Programm kasutab parametriseeritud meetodit. class Box { double width; double height; double depth; // leida ja tagastada ruumala double volume() { return width * height * depth; } // karbi mõõtmete määramine void setDim(double w, double h, double d) { width = w; height = h; depth = d; } } class BoxDemo5 { public static void main(String args[]) { Box mybox1 = new Box(); Box mybox2 = new Box(); double vol; // karbi initsialiseerimine mybox1.setDim(10, 20, 15); mybox2.setDim(3, 6, 9); // esimese karbi ruumala vol = mybox1.volume(); System.out.println("Ruumala on " + vol); // teise karbi ruumala vol = mybox2.volume(); System.out.println("Ruumala on " + vol); } }