java中初始化多个点,放入ArrayList中怎么做,是不是要定义一个存放点的数组,怎么写求指点,谢谢!!
展开全部
使用2个数组存放坐标,思路是正确的。
private Point p=null;
private List<Point> list=new ArrayList<Point>();
private int[] x=new int[]{1,2,3,4,5,6,100,1000,99999}; //横坐标
private int[] y=new int[]{9999,8888,555,222,111,455,2222,1,0}; //对应点纵坐标
public void init(){
for(int i=0;i<x.length;i++){
p=new Point(x[i], y[i]);
list.add(p);
}
for(int i=0;i<list.size();i++){
System.out.println("Point"+i+" : x="+list.get(i).getX()+" y="+list.get(i).getY());
}
}
展开全部
首先定义点这个对象
public class Point{
private int x;
private int y;
public Point(int x, int y) {
this.x = x;
this.y = y;
}
//定义getter和setter方法
}
然后开始操作
public static void main(String[] args) {
List<Point> pointList = new ArrayList<Point>();
pointList.add(new Point(0,0));
pointList.add(new Point(1,2));
pointList.add(new Point(3,6));
//后面是具体的操作
}
public class Point{
private int x;
private int y;
public Point(int x, int y) {
this.x = x;
this.y = y;
}
//定义getter和setter方法
}
然后开始操作
public static void main(String[] args) {
List<Point> pointList = new ArrayList<Point>();
pointList.add(new Point(0,0));
pointList.add(new Point(1,2));
pointList.add(new Point(3,6));
//后面是具体的操作
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不需要用数组,直接用ArrayList就可以了。
import java.awt.Point;
import java.util.ArrayList;
import java.util.List;
public class Test
{
public static void main(String[] args)
{
List<Point> points = new ArrayList<Point>();
Point p1 = new Point(1, 2);
Point p2 = new Point(3, 4);
Point p3 = new Point(5, 6);
points.add(p1);
points.add(p2);
points.add(p3);
}
}
import java.awt.Point;
import java.util.ArrayList;
import java.util.List;
public class Test
{
public static void main(String[] args)
{
List<Point> points = new ArrayList<Point>();
Point p1 = new Point(1, 2);
Point p2 = new Point(3, 4);
Point p3 = new Point(5, 6);
points.add(p1);
points.add(p2);
points.add(p3);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你要做什么?请详细描述!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不懂你的意思~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询