Guava库中Doubles类的contains()方法用于检查指定的双精度值数组中是否存在指定的值。要搜索的double值和要在其中搜索double的double数组都被当作参数。
用法:
public static boolean contains(double[] array, double target)
参数:此方法接受两个强制性参数:
- array:这是一个双精度值数组,将在其中搜索目标值。
- target:这是要搜索数组中是否存在的双精度值。
返回值:此方法返回一个布尔值,该布尔值说明在指定的double数组中是否存在目标double值。如果目标值存在于数组中,则返回True。否则返回False。
以下示例程序旨在说明contains()方法的使用:
范例1:
// Java code to show implementation of
// Guava's Doubles.contains() 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 = { 5.2, 4.2, 3.4, 2.3, 1.5 };
double target = 3.4;
// Using Doubles.contains() method to search
// for an element in the array. The method
// returns true if element is found, else
// returns false
if (Doubles.contains(arr, target))
System.out.println("Target is present"
+ " in the array");
else
System.out.println("Target is not present"
+ " in the array");
}
}
输出:
Target is present in the array
范例2:
// Java code to show implementation of
// Guava's Doubles.contains() 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.4, 6.5, 8.6, 10.7 };
double target = 7.5;
// Using Doubles.contains() method to search
// for an element in the array. The method
// returns true if element is found, else
// returns false
if (Doubles.contains(arr, target))
System.out.println("Target is present"
+ " in the array");
else
System.out.println("Target is not present"
+ " in the array");
}
}
输出:
Target is not present in the array
相关用法
- Java Guava Doubles.min()用法及代码示例
- 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()用法及代码示例
- Java Guava Chars.contains()用法及代码示例
注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 Java Guava | Doubles.contains() method with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。