标题:数组问题
只看楼主
永不回头
Rank: 1
等 级:新手上路
威 望:1
帖 子:228
专家分:0
注 册:2006-9-27
 问题点数:0 回复次数:1 
数组问题

import java.util.*;
public class Test24{
public static void main(String[] args){
Point[] pts1=new Point[]{new Point(1,1),new Point(2,2,),new Point(3,3)};
Point[] pts2=new Point[3];
System.arraycopy(pts1,0,pts2,0,pts1.length);
for(int i=0;i<pts1.length;i++){
System.out.println("pts2["+i+"].x="+pts2[i].x+"pts2["+i+"].y="+pts2[i].y);
}
}

}

class Point{
int x;
int y;
Point(int x,int y){
this.x=x;
this.y=y;
}
}
还有错误吗?我找不出来了

搜索更多相关主题的帖子: public import 
2006-10-25 16:35
永不回头
Rank: 1
等 级:新手上路
威 望:1
帖 子:228
专家分:0
注 册:2006-9-27
得分:0 

晕,找到了
哎,太不小心了.
Point[] pts1=new Point[]{new Point(1,1),new Point(2,2),new Point(3,3)};


人生就是一个字:惨,惨,惨!
2006-10-25 16:36



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-98675-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.337215 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved