Guava Chars.concat() 方法与实例
Guava库中Chars类的concat()方法是用来将许多数组的值连接成一个单一的数组。这些要串联的char数组被指定为该方法的参数.
例如。 concat(new char[] {a, b}, new char[] {}, new char[] {c}
返回阵列{a, b, c}。
语法:
参数: 本方法接受 arrays 作为参数,即本方法要连接的char数组。
返回值: 该方法返回一个单一的char数组,其中包含所有指定的char数组值的原始顺序。
以下程序说明了concat()方法的使用。
示例 1:
输出:
示例 2:
输出:
参考文献: https://google.github.io/guava/releases/18.0/api/docs/com/google/common/primitives/Chars.html#concat(char[]…)