| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 331 人关注过本帖
标题:数组问题
只看楼主 加入收藏
永不回头
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
快速回复:数组问题
数据加载中...
 
   



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

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