• 大小: 1KB
    文件类型: .java
    金币: 1
    下载: 0 次
    发布日期: 2021-01-11
  • 语言: Java
  • 标签: java  Point类  

资源简介

java实验,用java实现Point类,使用get,set,tostring方法实现

资源截图

代码片段和文件信息


package imut.cstd.ji09;

import java.awt.Color;

public class Point {
 //private static  Point Point = null;
private int x;
 private int y;
 private Color mycolor;
 
 public Point(){
x=0;
y=0;
mycolor=null;
 }
public Point(int xint y){
    this.x=x;
    this.y=y;
    mycolor=null;
 }
public Point(int xint yColor mycolor){
    this.x=x;
    this.y=y;
    this.mycolor=mycolor;
 }
public void setX(int x){
this.x=x;
}
public void setY(int y){
this.y=y;
}
public void setX(Color mycolor){
this.mycolor=mycolor;
}
public int getX(){
return x;
}
public int getY(){
return y;
}
public Color getMycolor(){
return mycolor;
}
public String toString(){
String result=null;
result= “

评论

共有 条评论