| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 539 人关注过本帖
标题:大家一起来找查,谢拉
只看楼主 加入收藏
大嘴先生2
Rank: 1
等 级:新手上路
威 望:2
帖 子:815
专家分:0
注 册:2006-4-17
收藏
 问题点数:0 回复次数:2 
大家一起来找查,谢拉
abstract class Shape
{
protected abstract prostion(float x,float y);
public abstract move(float x,float y);
public abstract show();
}
class Point
{
private float x;
private float y;
Point(float x,float y)
{
this.x=x;
this.y=y;
}
public void setX()
{
this.x=x;
}
public void setY()
{
this.y=y;
}
public float getX()
{
return x;
}
public float getY()
{
return y;
}
public String toString()
{
return x+","+y;
}
}
public class Line extends Shape
{
private Point start;
private Point end;
Line(Point start,Point end)
{
this.start=start;
this.end=end;
}
protected String prostion(Point x,Point y)
{}
public int show()
{}
public String toString()
{
return "起点"+start+"终点"+end;
}
public float getLang()
{
return Math.sqrt(Math.(end.getX()-start.getX(),2)+Math.(end.getY()-start.getY(),2));
}
public String toString()
{
return "起点"+start.toString()+"终点"+end.toString()+"直线长"+getLang();
}
public void move(float x,float y)
{
start.setX(start.getX()+x);
end.set(end.getX()+x);
start.setY(start.getY()+y);
end.set(end.getY()+y);
}
}
class Circle extends Shape
{
private Point center;
private float r;
protected String prostion(Point x,Point y)
{}
public int show()
{}
Circle(Point center,float r)
{
this.center=center;
this.r=r;
}
public void setCenter(Point center)
{
this.center=center;
}
public void setR(float r)
{
this.r=r;
}
public Point getCenter()
{
return center;
}
public float getR()
{
return r;
}
public void move(float x,float y)
{
center.getX()+x;
center.getY()+y;
}
public String toString()
{
return "圆心坐标"+center+"半径"+r;
}
}
public class P263E1
{
public static void main(String args[])
{
Line line=new Line(new Point(6,3),new Point(8,9));
System.out.println(line.toString());
Circle circle=new Circle(new Point(6,8),8);
System.out.println(circle.toString());
}
}
//一个很简单的问题,帮忙改下错误
//能标出来指教最好
//谢谢拉
搜索更多相关主题的帖子: 谢拉 
2007-04-15 22:14
事过境迁
Rank: 1
等 级:新手上路
帖 子:23
专家分:0
注 册:2006-8-2
收藏
得分:0 
Shape 的三个方法无返回类型
2007-04-15 23:15
事过境迁
Rank: 1
等 级:新手上路
帖 子:23
专家分:0
注 册:2006-8-2
收藏
得分:0 
Math用法错误
2007-04-15 23:21
快速回复:大家一起来找查,谢拉
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.019793 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved