Java Reference
In-Depth Information
public RectangleShape( double l, double w)
{
setDimension(l, w);
}
public void setDimension( double l, double w)
{
if (l >= 0)
length = l;
else
length = 0;
if (w >= 0)
width = w;
else
width = 0;
}
public double getLength()
{
return length;
}
public double getWidth()
{
return width;
}
public double area()
{
return length * width;
}
1
0
public double perimeter()
{
return 2 * (length + width);
}
public String toString()
{
return ("Length = " + length
+ ", Width = " + width
+ ", Perimeter = " + perimeter()
+ ", Area = " + area());
}
}
The class BoxShape , given next, is derived from the class RectangleShape .
public class BoxShape extends RectangleShape
Search WWH ::




Custom Search