这是我第一次尝试用“构造函数”做任何事情,经过一个小时左右的时间四处寻找关于这个主题的帮助,我仍然觉得我不知道我在做什么。
所以这是我为另一个程序创建的类文件,它应该有 2 个构造函数。我尽力了,但编译器一直告诉我我需要标识符。
如何识别构造函数?
public class property
{
int storey = 0;
int width = 0;
int length = 0;
property(int storey, int width, int length)
{
{
this.storey = storey;
this.width = width;
this.length = length;
}
}
property(int width, int length)
{
this(1, width, length);
}
public int calculateArea(int area)
{
return (storey * width * length);
}
public double calculatePrice(double price)
{
return (((storey * width * length) * 2.24) *1.15);
}
}