码迷,mamicode.com
首页 > 编程语言 > 详细

java 数组操作方法

时间:2017-06-28 21:40:10      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:名称   操作   数组   数组名   string   style   array   public   ++   

数组操作方法:

 

实现数组拷贝:

语法: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 }

 

java 数组操作方法

标签:名称   操作   数组   数组名   string   style   array   public   ++   

原文地址:http://www.cnblogs.com/Tsukasa/p/7091564.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!