博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java 数组操作方法
阅读量:5371 次
发布时间:2019-06-15

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

数组操作方法:

 

实现数组拷贝:

语法:System.arraycopy(源数组名称,源数组拷贝开始索引,目标数组名称,目标数组拷贝数组索引,长度)

 

  • 数组A:1 、 2 、 3 、 4 、 5 、 6 、 7 、 8  ;
  • 数组B:11 、 22 、 33 、 44 、 55 、 66 、 77 、 88  ;

  目标数组:11 、 22 、 4 、 5 、6 、 66 、 77 、 88 ;

1 public class demo { 2     public static void main(String[] args) { 3     int dataA [] = new int[]{1,2,3,4,5,6,7,8}; 4     int dataB [] = new int[]{11,22,33,44,55,66,77,88}; 5     System.arraycopy(dataA,3,dataB,2,3); 6     getprint(dataB); 7     } 8     //打印出数组 9     public static void getprint(int array[]){10         for (int i = 0 ; i < array.length ; i++) {11             System.out.print(array[i] + "、");12         }13     }14 }

 

实现数组排序:

语法:java.util.Arrays.sort(数组名称) ;

 

1 public class demo { 2     public static void main(String[] args) { 3         int data[] = new int[]{11,559,1894,71,69,181,78,156,41,126,13}; 4         java.util.Arrays.sort(data); 5         getprint(data); 6     } 7     public static void getprint(int array []){ 8         for (int i =0 ; i < array.length ; i++) { 9             System.out.print(array[i]+"、");10         }11     }12 }

 

转载于:https://www.cnblogs.com/Tsukasa/p/7091564.html

你可能感兴趣的文章
ok6410 android driver(11)
查看>>
【H3 BPM工作流程管理产品小故事】第五篇 必填与水印文本
查看>>
遥测的死区
查看>>
ORACLE百万记录SQL语句优化技巧
查看>>
iOS Core Animation学习总结(3)--动画的基本类型
查看>>
encodeURI()和encodeURIcomponent()的共同点和不同点
查看>>
ISO9126软件质量模型
查看>>
Android 关于expandableListView childrenView 点击改变颜色
查看>>
网络运维所有知识总结篇
查看>>
jasperreport_填充Report Templates
查看>>
phonegap 开发指南系列----简介(2)
查看>>
剑指offer——二叉树深度
查看>>
《漫画:这两个愿望我实现了》,长大后我成了程序猿
查看>>
有关于string的一些用法
查看>>
数据结构与算法-queue
查看>>
dll注入
查看>>
某某水卡数据算法
查看>>
details和summary
查看>>
SQL Server第一堂课:创建数据库,创建表,以及表中最基本的增,删,改
查看>>
最近遇到的几个c++笔试题
查看>>