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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。