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


Java Guava Ints join()用法及代碼示例


Guava的Ints.join()返回一個字符串,其中包含用分隔符分隔的提供的int值。

例如,join(“-”,1,2,3)返回字符串“1-2-3”。

用法:


public static String 
    join(String separator, int[] array)

參數:此方法采用以下參數:

  • separator:在結果字符串的連續值之間應出現的文本(而不是在開頭或結尾)。
  • array:一個int值數組。

返回值:此方法返回一個字符串,其中包含用分隔符分隔的提供的int值。

以下示例說明了Ints.join()方法:

範例1:

// Java code to show implementation of 
// Guava's Ints.join() method 
  
import com.google.common.primitives.Ints; 
import java.util.Arrays; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
  
        // Creating an integer array 
        int[] arr = { 2, 4, 6, 8, 10 }; 
  
        // Using Ints.join() method to get a 
        // string containing the elements of array 
        // separated by a separator 
        System.out.println(Ints.join(", ", arr)); 
    } 
}
輸出:
2, 4, 6, 8, 10

範例2:

// Java code to show implementation of 
// Guava's Ints.join() method 
  
import com.google.common.primitives.Ints; 
import java.util.Arrays; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
  
        // Creating an integer array 
        int[] arr = { 3, 5, 7, 9, 11 }; 
  
        // Using Ints.join() method to get a 
        // string containing the elements of array 
        // separated by a separator 
        System.out.println(Ints.join("-", arr)); 
    } 
}
輸出:
3-5-7-9-11

參考: https://google.github.io/guava/releases/22.0/api/docs/com/google/common/primitives/Ints.html#join-java.lang.String-int…-



相關用法


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