當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Guava Chars.concat()用法及代碼示例


Guava庫中Chars類的concat()方法用於將許多數組的值連接到一個數組中。將這些要串聯的char數組指定為此方法的參數。

For example: concat(new char[] {a, b}, new char[] {}, new char[] {c}
returns the array {a, b, c}.

用法:


public static char[] concat(char[]... arrays)

參數:此方法接受數組作為參數,該參數是此方法要連接的char數組。

返回值:此方法返回一個char數組,該數組按原始順序包含所有指定的char數組值。

以下示例程序旨在說明concat()方法的使用:

範例1:

// Java code to show implementation of 
// Guava's Chars.concat() method 
  
import com.google.common.primitives.Chars; 
import java.util.Arrays; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
  
        // Creating 2 Character arrays 
        char[] arr1 = { 'H', 'E', 'L', 'L', 'O' }; 
        char[] arr2 = { 'G', 'E', 'E', 'K', 'S' }; 
  
        // Using Chars.concat() method to combine 
        // elements from both arrays into a single array 
        char[] res = Chars.concat(arr1, arr2); 
  
        // Displaying the single combined array 
        System.out.println(Arrays.toString(res)); 
    } 
}
輸出:
[H, E, L, L, O, G, E, E, K, S]

範例2:

// Java code to show implementation of 
// Guava's Chars.concat() method 
  
import com.google.common.primitives.Chars; 
import java.util.Arrays; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
  
        // Creating 4 Character arrays 
        char[] arr1 = { '1', '2', '3' }; 
        char[] arr2 = { '4', '5' }; 
        char[] arr3 = { '6', '7', '8' }; 
        char[] arr4 = { '9', '0' }; 
  
        // Using Chars.concat() method to combine 
        // elements from both arrays into a single array 
        char[] res = Chars.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]

參考:



相關用法


注:本文由純淨天空篩選整理自Sahil_Bansall大神的英文原創作品 Java Guava | Chars.concat() method with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。