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
相關用法
- Java Guava Doubles.min()用法及代碼示例
- Java Guava Doubles.contains()用法及代碼示例
- Java Guava Floats.contains()用法及代碼示例
- Java Guava Bytes.contains()用法及代碼示例
- Java Guava Longs.contains()用法及代碼示例
- Java Guava Shorts.min()用法及代碼示例
- Java Guava Longs.min()用法及代碼示例
- Java Guava Chars.min()用法及代碼示例
- Java Guava Floats.min()用法及代碼示例
- Java Guava Longs.max()用法及代碼示例
- Java Guava Doubles.max()用法及代碼示例
- Java Guava Chars.max()用法及代碼示例
- Java Guava Floats.max()用法及代碼示例
- Java Guava Booleans.contains()用法及代碼示例
- Java Guava Shorts.contains()用法及代碼示例
注:本文由純淨天空篩選整理自Sahil_Bansall大神的英文原創作品 Java Guava | Doubles.join() method with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。