当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Guava Doubles.join()用法及代码示例


Guava库中Doubles类的join()方法用于合并或连接所有由分隔符分隔的给定double值。这些双精度值将参数传递给此方法。此方法也将分隔符作为参数。此方法返回一个String,它是对指定的double值进行联接操作的结果。

For example: join(“-“, 1L, 2L, 3L) returns the string “1-2-3”.

用法:


public static String join(String separator, double… array)

参数:此方法接受两个强制性参数:

  • separator:这是在联接的double值之间出现的doubleacter。
  • array:这是要连接的双精度值数组。

返回值:此方法返回一个字符串,其中包含所有由分隔符分隔的给定双精度值。

以下示例程序旨在说明此方法的用法:

范例1:

// Java code to show implementation of 
// Guava's Doubles.join() method 
  
import com.google.common.primitives.Doubles; 
import java.util.Arrays; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
  
        // Creating a double array 
        double[] arr = { 2.3, 4.2, 6.2, 8.6, 10.5 }; 
  
        // Using Doubles.join() method to get a 
        // string containing the elements of array 
        // separated by a separator 
        System.out.println(Doubles.join("#", arr)); 
    } 
}
输出:
2.3#4.2#6.2#8.6#10.5

范例2:

// Java code to show implementation of 
// Guava's Doubles.join() method 
  
import com.google.common.primitives.Doubles; 
import java.util.Arrays; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
  
        // Creating a double array 
        double[] arr = { 3.2, 5.4, 7.6, 9.1, 11.2 }; 
  
        // Using Doubles.join() method to get a 
        // string containing the elements of array 
        // separated by a separator 
        System.out.println(Doubles.join("*", arr)); 
    } 
}
输出:
3.2*5.4*7.6*9.1*11.199999809265137

参考: https://google.github.io/guava/releases/19.0/api/docs/com/google/common/primitives/Doubles.html#join(java.lang.String, %20double…)



相关用法


注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 Java Guava | Doubles.join() method with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。