博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
6、高级的数组的复制(test4.java)
阅读量:5011 次
发布时间:2019-06-12

本文共 866 字,大约阅读时间需要 2 分钟。

  这里指的高级,并不是过么高大上,而是说我们可以调用系统函数,直接对数组进行复制,并且这个函数的强大并不止局限于,对数组的复制,而且可以对数组进行截取,在指定位置插入或删除某个元素。

 

  本篇只介绍数组的复制,其他的操作将在后续文章中进行阐述。

  

  将一个数组复制到另一个数组去,采用

  System.arraycopy()

  方法的参数说明:

  System.arraycopy(from,fromstart,to,tostart,count)

 

  

1 //将A数组值复制到B数组中 2  3 public class test4 4 { 5     public static void main (String [] args) 6     { 7         int [] arr1 = {1,2,3,4,5}; 8  9         int [] arr2 = new int [arr1.length];10 11         System.arraycopy(arr1,0,arr2,0,arr1.length);12 13         arr2[2] = 10;14 15         for(int num : arr1)16         {17             //打印结果:1 2 3 4 518             System.out.print(num+"\t");19         }20 21         System.out.println();22 23         for(int num : arr2)24         {25             //打印结果为:1 2 10 4 526             System.out.print(num+"\t");27         }28     }29 }

 

  

转载于:https://www.cnblogs.com/zglbt/p/8934471.html

你可能感兴趣的文章
22-reverseString-Leetcode
查看>>
Centos 开机自动联网
查看>>
cocos2dx使用lua和protobuf
查看>>
HDOJ 5630 Rikka with Chess
查看>>
netcore2.1 在后台运行一个任务
查看>>
PostgreSQL pg_hba.conf 文件简析
查看>>
android o logcat read: unexpected EOF!
查看>>
[Scrum]2010/12/28 —— 第一天!
查看>>
ASP.NET MVC模式 温习(一)排除MVC模式误区
查看>>
Mysql的read_only 只读属性说明 (运维笔记)
查看>>
DOCKER 从入门到放弃(五)
查看>>
Python 多线程学习
查看>>
appcan官方ajax
查看>>
获取NVIDIA显卡的温度
查看>>
Dijkstra算法
查看>>
Deep Learning 9: Performance
查看>>
面试题61 把二叉树打印成多行
查看>>
C#例子 易懂故事 接口 委托 事件 异步通知 好玩.
查看>>
[转]Windows Shell 编程 第十一章 【来源:http://blog.csdn.net/wangqiulin123456/article/details/7987992】...
查看>>
修改presto新版源码让他支持redash数据库
查看>>