摘要:本文分享了关于Java数组最顶级的11大方法,帮助你解决工作流程问题,无论是运用在团队环境或是在私人项目中,你都可以直接拿来用。

本文分享了关于Java数组最顶级的11大方法,帮助你解决工作流程问题,无论是运用在团队环境或是在私人项目中,你都可以直接拿来用!

0.  声明一个数组(Declare an array)

1
2
3
String[] aArray = new String[5];
String[] bArray = {"a","b","c", "d", "e"};
String[] cArray = new String[]{"a","b","c","d","e"};

1.  在Java中输出一个数组(Print an array in Java)

1
2
3
4
5
6
7
8
9
int[] intArray = { 1, 2, 3, 4, 5 };
String intArrayString = Arrays.toString(intArray);
  
// print directly will print reference value
System.out.println(intArray);
// [I@7150bd4d
  
System.out.println(intArrayString);
// [1, 2, 3, 4, 5]

2. 从数组中创建数组列表(Create an ArrayList from an array

1
2
3
4
String[] stringArray = { "a", "b", "c", "d", "e" };
ArrayList<String> arrayList = new ArrayList<String>(Arrays.asList(stringArray));
System.out.println(arrayList);
// [a, b, c, d, e]

3. 检查数组中是否包含特定值(Check if an array contains a certain value)

1
2
3
4
String[] stringArray = { "a", "b", "c", "d", "e" };
boolean b = Arrays.asList(stringArray).contains("a");
System.out.println(b);
// true

4. 连接两个数组( Concatenate two arrays)

1
2
3
4
int[] intArray = { 1, 2, 3, 4, 5 };
int[] intArray2 = { 6, 7, 8, 9, 10 };
// Apache Commons Lang library
int[] combinedIntArray = ArrayUtils.addAll(intArray, intArray2);

5. 声明一个数组内链(Declare an array inline )

1
method(new String[]{"a", "b", "c", "d", "e"});

6. 将数组元素加入到一个独立的字符串中(Joins the elements of the provided array into a single String)

1
2
3
4
5
// containing the provided list of elements
// Apache common lang
String j = StringUtils.join(new String[] { "a", "b", "c" }, ", ");
System.out.println(j);
// a, b, c

7. 将数组列表转换成一个数组 (Covnert an ArrayList to an array)

1
2
3
4
5
6
String[] stringArray = { "a", "b", "c", "d", "e" };
ArrayList<String> arrayList = new ArrayList<String>(Arrays.asList(stringArray));
String[] stringArr = new String[arrayList.size()];
arrayList.toArray(stringArr);
for (String s : stringArr)
    System.out.println(s);

8. 将数组转换成一个集合(Convert an array to a set)

1
2
3
Set<String> set = new HashSet<String>(Arrays.asList(stringArray));
System.out.println(set);
//[d, e, b, c, a]

9. 反向数组(Reverse an array)

1
2
3
4
int[] intArray = { 1, 2, 3, 4, 5 };
ArrayUtils.reverse(intArray);
System.out.println(Arrays.toString(intArray));
//[5, 4, 3, 2, 1]

10. 删除数组元素(Remove element of an array)

1
2
3
int[] intArray = { 1, 2, 3, 4, 5 };
int[] removed = ArrayUtils.removeElement(intArray, 3);//create a new array
System.out.println(Arrays.toString(removed));

One more – convert int to byte array

1
2
3
4
5
byte[] bytes = ByteBuffer.allocate(4).putInt(8).array();
  
for (byte t : bytes) {
   System.out.format("0x%x ", t);
}

英文出自:
Programcreek

最新文章

  1. oracle的会话(session)
  2. 20135214万子惠 (2)——-Java面向对象程序设计
  3. 和iPhone有关的视图控制器:UIViewController、UITabBarController、UINavigationController及其混合用法
  4. Python变量和数据类型
  5. javascript获取页面各种高度
  6. JS的className,字体放大缩小
  7. Android艺术探索第四 view的自定义
  8. 《RabbitMQ Tutorial》译文 第 4 章 路由
  9. java微信获取经纬度转换为高德坐标小结
  10. SQL Server数据库中表的增、删、改
  11. Python爬虫——Request模块
  12. Mac影音多媒体工具软件推荐
  13. linux下yum安装及配置
  14. python学习(七)
  15. 什么是Java序列化,如何实现java序列化
  16. 正确理解springboot的常用注入方式
  17. Java中关键字static的使用与作用
  18. DP(动态规划)
  19. 【codeforces】【比赛题解】#855 Codefest 17
  20. DTCoreText 、WKWebView 、UIWebView的比较

热门文章

  1. Sublime Text 之 Package Control 镜像
  2. 一次非常有意思的sql优化经历
  3. js与jquery的区别
  4. &ldquo;耐撕&rdquo;团队 2016.04.06 站立会议
  5. Java中唯一数的生成
  6. jquery 插件之 点赞“+1” 特效
  7. Java异常-一般异常和运行时异常的区别
  8. SqlParameter中的size
  9. TCP/IP详解 学习四
  10. junit加载