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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。