Java入门:定义MyPoint类

定义MyPoint类(表示点),重载toString()方法。在TestMyPoint.java的main方法中实例化MyPoint类的对象start和end,并通过字符... 定义MyPoint类(表示点),重载toString()方法。在TestMyPoint.java的main方法中实例化MyPoint类的对象start和end,并通过字符串连接运算输出如下格式:
start point is start[x,y]
end point is end[x,y]
展开
 我来答
popop0p0popo
2009-10-11 · TA获得超过226个赞
知道答主
回答量:202
采纳率:0%
帮助的人:113万
展开全部
MyPoint.java

public class MyPoint{
private double x;
private double y;

public MyPoint(){
this.x=0;
this.y=0;
}

public MyPoint(double x, double y){
this.x=x;
this.y=y;
}

public double getX(){
return this.x;
}

public double getY(){
return this.y;
}

public void setX(double x){
this.x=x;
}

public void setY(double y){
this.y=y;
}

public String toString(){
return "["+this.x+","+this.y+"]";
}
}

TestMyPoint.java
public class TestMyPoint{
public static void main(String[] args){
Point start=new Point();
Point end=new Point(2,3);
System.out.println("start point is start"+start.toString());
System.out.println("end point is end"+end.toString());
}
}
fly_trap
2009-10-11 · TA获得超过215个赞
知道小有建树答主
回答量:94
采纳率:0%
帮助的人:78.5万
展开全部
class MyPoint {
String name;
int x;
int y;
public MyPoint(String name,int x,int y){
this.name = name;
this.x = x;
this.y = y;
}
public String toString(){
return this.name+" point is "+this.name+"["+this.x+","+this.y+"]";
}
}
public class TestMyPoint{
public static void main(String[] args) {
MyPoint start = new MyPoint("start",1,2);
MyPoint end = new MyPoint("end",3,4);
System.out.println(start);
System.out.println(end);
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
屠夫的笨钩子
2009-10-11
知道答主
回答量:3
采纳率:0%
帮助的人:0
展开全部
public class TestMyPoint {
public static void main(String[] args){
Mypoint start=new Mypoint(3,4);
Mypoint end=new Mypoint(7,10);
System.out.println("start point is start"+start.toString());
System.out.print("end point is end"+end.toString());
}
}
class Mypoint {
int x;
int y;
Mypoint(int x,int y){
this.x=x;
this.y=y;
}
public String toString(){
return ("["+x+","+y+"]");
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式