博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Arrays工具类十大常用方法
阅读量:7222 次
发布时间:2019-06-29

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

翻译人员: 铁锚

翻译日期: 2013年11月19日

原文链接: 

以下是由  投票决出的Java数组最常用的十个方法, 

0. 声明数组

String[] aArray = new String[5];String[] bArray = {"a","b","c", "d", "e"};String[] cArray = new String[]{"a","b","c","d","e"};
1. 打印数组

int[] intArray = { 1, 2, 3, 4, 5 };String intArrayString = Arrays.toString(intArray); // 直接打印,则会打印出引用对象的Hash值// [I@7150bd4dSystem.out.println(intArray);// [1, 2, 3, 4, 5]System.out.println(intArrayString);
2. 根据数组创建ArrayList

String[] stringArray = { "a", "b", "c", "d", "e" };ArrayList
arrayList = new ArrayList
(Arrays.asList(stringArray));// [a, b, c, d, e]System.out.println(arrayList);
3. 检查数组是否包含某个值

String[] stringArray = { "a", "b", "c", "d", "e" };boolean b = Arrays.asList(stringArray).contains("a");// trueSystem.out.println(b);
4. 合并连接两个数组
int[] intArray = { 1, 2, 3, 4, 5 };int[] intArray2 = { 6, 7, 8, 9, 10 };// Apache Commons Lang 库int[] combinedIntArray = ArrayUtils.addAll(intArray, intArray2);
5. 声明内联数组
method(new String[]{"a", "b", "c", "d", "e"});
6. 用给定的字符串连结(join)数组
// containing the provided list of elements// Apache common langString j = StringUtils.join(new String[] { "a", "b", "c" }, ", ");// a, b, cSystem.out.println(j);
7. 将ArrayList转换为数组
String[] stringArray = { "a", "b", "c", "d", "e" };ArrayList
arrayList = new ArrayList
(Arrays.asList(stringArray));String[] stringArr = new String[arrayList.size()];arrayList.toArray(stringArr);for (String s : stringArr) System.out.println(s);
8. 将数组转换为Set
Set
set = new HashSet
(Arrays.asList(stringArray));//[d, e, b, c, a]System.out.println(set);
9. 数组元素反转
int[] intArray = { 1, 2, 3, 4, 5 };ArrayUtils.reverse(intArray);//[5, 4, 3, 2, 1]System.out.println(Arrays.toString(intArray));
10. 移除元素
int[] intArray = { 1, 2, 3, 4, 5 };int[] removed = ArrayUtils.removeElement(intArray, 3);//创建新的数组System.out.println(Arrays.toString(removed));
更多——转换int值为字节数组
byte[] bytes = ByteBuffer.allocate(4).putInt(8).array(); for (byte t : bytes) {   System.out.format("0x%x ", t);}
相关阅读:

转载于:https://www.cnblogs.com/lanzhi/p/6467071.html

你可能感兴趣的文章
网络工程师的面试题
查看>>
nginx启动脚本
查看>>
常用输入法框架简介
查看>>
记录新机房建设。20130629
查看>>
安装ntop
查看>>
ssh远程登录讲解
查看>>
mysql的备份脚本
查看>>
linux下mysql的root密码忘记解决方法
查看>>
7.索引的性能分析
查看>>
在 Delphi 下使用 DirectSound (17): 频率均衡效果器 IDirectSoundFXParamEq8
查看>>
文件操作命令一cp 2
查看>>
Multi-Mechanize工程目录结构说明
查看>>
halt
查看>>
标准ACL+扩展ACL+命名ACL
查看>>
Meteor应用的启动过程分析
查看>>
九曲黄河万里沙,浪淘风簸自天涯 — 正则表达式
查看>>
欲哭无泪,联想笔记本性价比
查看>>
很简单的在Ubuntu系统下安装字体和切换默认字体的方法
查看>>
我的友情链接
查看>>
dojo框架用hitch实现函数与上下文的绑定
查看>>