class box {
double ht,wdt,len;
box(double h,double w,double l) {
ht=h;
wdt=w;
len=l;
}
double volume() {
return ht*wdt*len;
}
}
class boxme {
public static void main(String args[]) {
box mybox= new box(1,2,3);
System.out.print("The volume is "+mybox.volume());
}
}
// 对于要在 bluej 中运行的代码,我仍然需要在创建对象后提供参数(尽管我已经在我的代码中提供了它们)。相同的代码在 cmd 中运行良好,但在 bluej 中尝试时显示出这种差异。请提供一个理由和解决方案来证明 bluej 和 cmd 之间的等价性?//