java 编写一个矩形类 rect 要求如下:

1、四个私有属性长lengh宽width左上角坐标startX和startY2、三个构造方法无参构造方法两个参数构造四个参数构造3、共有成员方法3、公有成员方法:1、设置... 1、四个私有属性 长lengh 宽width 左上角坐标startX 和 startY
2、三个构造方法 无参构造方法 两个参数构造 四个参数构造
3、共有成员方法
3、公有成员方法:1、设置方法setLW 用于设置矩形的长和宽;
2、设置方法setXY 用于设置矩形的左上角坐标;
3、获取方法getLength,用于获取矩形的长;
4、获取方法getWidth,用于获取矩形的宽;
5、获取方法getStarX,用于获取矩形的矩形的左上角坐标StarX;
6、获取方法getStarY,用于获取矩形的矩形的左上角坐标StarY;
7、方法isinside(int X,int Y),用于判断坐标点是否在矩形内部;
展开
 我来答
Shining_focus
2013-06-21 · TA获得超过234个赞
知道小有建树答主
回答量:310
采纳率:100%
帮助的人:121万
展开全部

public class Rect{
    private int length;
    private int width;
    private int startX;
    private int startY
    
    public Rect(){}
    
    public Rect(int length,int width){
            this.length = length;
            this.width = width;
    }
    
    public Rect(int length,int width,int startX,int startY){
            this.length = length;
            this.width = width;
            this.startX = startX;
            this.startY = startY;
    }
    
    //不知道你要什么成员方法,我随便点....
    
    
    public void louzhuhao(){
            System.out.println("楼主好....");
    }
public int getLength() {
    return length;
}
public void setLength(int length) {    
    this.length = length;
}
public int getWidth() {
    return width;
}
public void setWidth(int width) {
    this.width = width;
}
public int getStartX() {
    return startX;
}
public void setStartX(int startX) {
    this.startX = startX;
}
public int getStartY() {
    return startY;
}
public void setStartY(int startY) {
this.startY = startY;
}
}

302652034_bai
推荐于2018-04-20 · TA获得超过4145个赞
知道大有可为答主
回答量:2206
采纳率:66%
帮助的人:1540万
展开全部
class Rect
{
private int lengh;
private int width;
private int startX;
private int startY;
public Rect()
{
}
public Rect(int lengh,int width)
{
this.lengh=lengh;
this.width=width;  
}
public Rect(int startX,int startY,int lengh,int width)
{
this.startX=startX;
this.startY=startY;
this.lengh=lengh;
this.width=width;     
}  

public int getlengh()
{
return this.lengh; 
}  
public void setlengh(int lengh)
{
this.lengh=lengh; 
}  

.........                
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式