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
相關用法
- Java Guava Ints contains()用法及代碼示例
- Java Guava Ints max()用法及代碼示例
- Java Guava Ints min()用法及代碼示例
- Java Guava Ints toArray()用法及代碼示例
- Java Guava Ints asList()用法及代碼示例
- Java Guava Ints concat()用法及代碼示例
- Java Guava Ints indexOf()用法及代碼示例
- Java Guava Ints lastIndexOf()用法及代碼示例
- Java Guava Ints.compare()用法及代碼示例
- Java Guava Ints.hashCode()用法及代碼示例
- Java Ints.indexOf(int[] array, int[] target)用法及代碼示例
- Java Guava Booleans.join()用法及代碼示例
- Java Guava Longs.join()用法及代碼示例
- Java Guava Floats.join()用法及代碼示例
注:本文由純淨天空篩選整理自Sahil_Bansall大神的英文原創作品 Ints join() function | Guava | Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。