数组实用程序
public
class
ArrayUtil
extends Object
java.lang.Object 中 | |
↳ | com.android.tradefed.util.ArrayUtil |
数组的实用程序方法
摘要
公共方法 | |
---|---|
static
String[]
|
buildArray(String... arrays)
根据提供的内容构建数组。 |
static
String
|
join(String sep, Object... pieces)
将一系列对象转换为字符串,以 |
static
<T>
|
list(T... inputAry)
将 varargs 列表/数组转换为 |
公共方法
buildArray
public static String[] buildArray (String... arrays)
根据提供的内容构建数组。
生成的数组将是 arrays 个输入数组在其 原始顺序
参数 | |
---|---|
arrays |
String :要串联的数组 |
返回 | |
---|---|
String[] |
新构建的数组 |
join
public static String join (String sep, Object... pieces)
将一系列对象转换为字符串,以 sep
分隔。如果单个
Collection
时,假定该 Collection 的元素是
已加入。否则,将传递的 Object
封装在 ERROR(/List)
中,并联接
生成列表。
参数 | |
---|---|
sep |
String :用于分隔不同输出段的字符串分隔符。 |
pieces |
Object :对象的 ERROR(/Collection) 或 varargs Array 。 |
返回 | |
---|---|
String |
list
public staticlist (T... inputAry)
将 varargs 列表/数组转换为 ERROR(/List)
。这对于构建
ERROR(/List)
。请注意,这与 Arrays.asList(T)
的区别在于,
返回的数组是可变的。
参数 | |
---|---|
inputAry |
T :数组或 varargs 列表 |
返回 | |
---|---|
|
具有相同内容的 ERROR(/List) 实例 |