建立自己喜欢的盒子宝盒 建立属于自己的盒子box
大家好,我是小典,我来为大家解答以上问题。建立自己喜欢的盒子宝盒,建立属于自己的盒子box,很多人还不知道,现在让我们一起来看看吧!
1、楼主你的要求是bai在一du个文件中创建两个类zhi,所以我用dao内部类来版实现你的要求权.代码如下:
2、public class BoxDemo
3、{
4、 class Box
5、 {
6、 private double width;
7、 private double height;
8、 private double depth;
9、 public Box(double width,double height,double depth)
10、 {
11、 this.width = width;
12、 this.height = height;
13、 this.depth = depth;
14、 }
15、 public double volume()
16、 {
17、 return this.width*this.height*this.depth;
18、 }
19、 }
20、 public static void main(String[] args)
21、 {
22、 Box box = new BoxDemo().new Box(3,4,5);
23、 System.out.println("The volume of the box is:"+box.volume());
24、 }
25、}
本文到此讲解完毕了,希望对大家有帮助。