小码哥的IT人生

Java 实例 - 数组合并

Java基础 2023-08-17 16:54:50小码哥的IT人生shichen

Java 实例 - 数组合并

Java 实例

以下实例演示了如何通过List类的Arrays.toString ()方法和List类的list.Addall(array1.asList(array2)方法将两个数组合并为一个数组:

/*
 author by phpcodeweb.com
 文件名:Main.java
 */
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class Main {
   public static void main(String args[]) {
      String a[] = { "A", "E", "I" };
      String b[] = { "O", "U" };
      List list = new ArrayList(Arrays.asList(a));
      list.addAll(Arrays.asList(b));
      Object[] c = list.toArray();
      System.out.println(Arrays.toString(c));
   }
}

以上代码运行输出结果为:

[A, E, I, O, U]
 

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024