Guava库中Bytes类的concat()方法用于将许多数组的值连接到一个数组中。这些要连接的字节数组被指定为该方法的参数。
For example: concat(new byte[] {1, 2}, new byte[] {3, 4, 5}, new byte[] {6, 7}
returns the array {1, 2, 3, 4, 5, 6, 7}.
用法:
public static byte[] concat(byte[]... arrays)
参数:此方法接受数组作为参数,该数组是此方法要连接的字节数组。
返回值:此方法返回一个单字节数组,该数组按原始顺序包含所有指定的字节数组值。
以下示例程序旨在说明concat()方法的使用:
范例1:
// Java code to show implementation of
// Guava's Bytes.concat() method
import com.google.common.primitives.Bytes;
import java.util.Arrays;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating 2 Byte arrays
byte[] arr1 = { 1, 2, 3, 4, 5 };
byte[] arr2 = { 6, 2, 7, 0, 8 };
// Using Bytes.concat() method to combine
// elements from both arrays into a single array
byte[] res = Bytes.concat(arr1, arr2);
// Displaying the single combined array
System.out.println(Arrays.toString(res));
}
}
输出:
[1, 2, 3, 4, 5, 6, 2, 7, 0, 8]
范例2:
// Java code to show implementation of
// Guava's Bytes.concat() method
import com.google.common.primitives.Bytes;
import java.util.Arrays;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating 4 byte arrays
byte[] arr1 = { 1, 2, 3 };
byte[] arr2 = { 4, 5 };
byte[] arr3 = { 6, 7, 8 };
byte[] arr4 = { 9, 0 };
// Using Bytes.concat() method to combine
// elements from both arrays into a single array
byte[] res = Bytes.concat(arr1, arr2, arr3, arr4);
// Displaying the single combined array
System.out.println(Arrays.toString(res));
}
}
输出:
[1, 2, 3, 4, 5, 6, 7, 8, 9, 0]
相关用法
- Java Guava Doubles.min()用法及代码示例
- Java Guava Doubles.contains()用法及代码示例
- Java Guava Floats.contains()用法及代码示例
- Java Guava Bytes.contains()用法及代码示例
- Java Guava Longs.contains()用法及代码示例
- Java Guava Shorts.min()用法及代码示例
- Java Guava Longs.min()用法及代码示例
- Java Guava Chars.min()用法及代码示例
- Java Guava Floats.min()用法及代码示例
- Java Guava Longs.max()用法及代码示例
- Java Guava Doubles.max()用法及代码示例
- Java Guava Chars.max()用法及代码示例
- Java Guava Floats.max()用法及代码示例
- Java Guava Booleans.contains()用法及代码示例
- Java Guava Shorts.contains()用法及代码示例
注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 Java Guava | Bytes.concat() method with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。