package cn.itcast.day1;
public class ReflectPoint {
private int x;
public int y;
public String str1="bbbccc";
public String str2="bbbddd";
public String str3="itcast";
public ReflectPoint(int x, int y) {
super();
this.x = x;
this.y = y;
}
@Override
public String toString(){
return str1+"........."+str2+"........."+str3;
}
}