会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
spring学习笔记
java例程练习(数组复制与arraycopy)
//数组拷贝 public class Test { public static void main(String[] args) { String[] s = {"Microsoft", "IBM", "Sun", "Oracle", "Apple"}; String[] sCopy = new String[6]; System.arraycopy(s, 0, sCopy, 0, s.length); for(int i = 0; i < s.length; i++) { System.out.print(s[i] + " "); } System.out.println(); for(int i = 0; i < sCopy.length; i++) { System.out.print(sCopy[i] + " "); } System.out.println(); int [][] intArray = {{1, 2}, {1, 3, 4}, {4, 9}}; int [][] intArrayCopy = new int [3][]; System.arraycopy(intArray, 0, intArrayCopy, 0,intArray.length); //有趣的问题从这里开始 intArrayCopy[2][1] = 100; for(int i = 0; i < intArray.length; i++) { for(int j = 0; j < intArray[i].length; j++) { System.out.print(intArray[i][j] + " "); } System.out.println(); } //浅层复制问题! } }
posted on
2012-04-29 23:23
spring学习笔记
阅读(
209
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
导航
博客园
首页
联系
订阅
管理
公告