前言
在写题目的时候,本来想定义一个类,然后用arraylist来存取该类,形成数组,然后最后发现arraylist存取的是引用,而不是数据值。
附上代码:
class Point{
int x;
int y;
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
}
public static void main(String[] args) {
ArrayList<Point> arrayList = new ArrayList<>();
Point tmPoint=new Point();
Point tmPoint2=new Point();
tmPoint.setX(5);
tmPoint.setY(6);
arrayList.add(tmPoint);
tmPoint.setX(8);
tmPoint.setY(9);
arrayList.add(tmPoint);
tmPoint.setX(192);
tmPoint.setY(165);
tmPoint2=(Point)(arrayList.get(0));
System.out.println(tmPoint2.getX()+" * "+tmPoint2.getY());
tmPoint=(Point)(arrayList.get(1));
System.out.println(tmPoint.getX()+" * "+tmPoint.getY());
}
会发现输出都是192和165:
更多可见别人的这篇博客,很有用:
LeetCode刷题时引发的思考:Java中ArrayList存放的是值还是引用? - 知乎 (zhihu.com)https://zhuanlan.zhihu.com/p/260137633
正文
直接用[ ]解决,比如我需要创建一个直角坐标系,里面的点如何收集:
- 首先创建一个Point类:
class Point{
int x;
int y;
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
}
- 接着用循环放数据
public static void main(String[] args) {
Point []arr =new Point[450];
int num=1;
for (int i = 0; i < 20; i++) {
for (int j = 0; j < 21; j++) {
arr[num]=new Point(); //这句是精华
arr[num].setX(i);
arr[num].setY(j);
num++;
}
}
System.out.println(num);
for (int i = 400; i < num; i++) {
System.out.println(arr[i].getX()+"***"+arr[i].getY());
}
}
看代码就懂了的,那么日安~
https://www.cnblogs.com/gxm2333/p/12782830.htmlhttps://www.cnblogs.com/gxm2333/p/12782830.html