整数 join()函数|番石榴 |Java
Guava 的Ints .join()返回一个字符串,其中包含由separator 分隔的提供的 int 值。
例如,join(“-”, 1, 2, 3) 返回字符串“1-2-3”。
句法:
public static String
join(String separator, int[] array)
参数:此方法采用以下参数:
- 分隔符:应出现在结果字符串中的连续值之间的文本(但不在开头或结尾)。
- 数组:一个int值数组。
返回值:此方法返回一个字符串,其中包含由separator 分隔的提供的 int 值。
下面的示例说明了 Ints.join() 方法:
示例 1:
Java
// 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));
}
}
Java
// 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));
}
}
输出:
2, 4, 6, 8, 10
示例 2:
Java
// 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…-