当前位置: 首页>>代码示例>>Java>>正文


Java NavigableSet.contains方法代码示例

本文整理汇总了Java中java.util.NavigableSet.contains方法的典型用法代码示例。如果您正苦于以下问题:Java NavigableSet.contains方法的具体用法?Java NavigableSet.contains怎么用?Java NavigableSet.contains使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.util.NavigableSet的用法示例。


在下文中一共展示了NavigableSet.contains方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: checkNonPrime

import java.util.NavigableSet; //导入方法依赖的package包/类
/**
 * Verifies whether all {@code BigInteger}s in the tested range for which
 * {@code isProbablePrime()} returns {@code false} are <i>not</i>
 * prime numbers.
 *
 * @return true if and only if the test succeeds
 */
private static boolean checkNonPrime(NavigableSet<BigInteger> primes,
        int certainty) {
    int maxPrime = DEFAULT_UPPER_BOUND;
    try {
        maxPrime = primes.last().intValueExact();
    } catch (ArithmeticException e) {
        // ignore it
    }

    // Create a list of non-prime BigIntegers.
    SplittableRandom splitRandom = RandomFactory.getSplittableRandom();
    List<BigInteger> nonPrimeBigInts = (splitRandom)
            .ints(NUM_NON_PRIMES, 2, maxPrime).mapToObj(BigInteger::valueOf)
            .filter(b -> !b.isProbablePrime(certainty)).collect(toList());

    // If there are any non-probable primes also in the primes list then fail.
    boolean failed = nonPrimeBigInts.stream().anyMatch(primes::contains);

    // In the event, print which purported non-primes were actually prime.
    if (failed) {
        for (BigInteger bigInt : nonPrimeBigInts) {
            if (primes.contains(bigInt)) {
                System.err.println("Prime value thought to be non-prime: " + bigInt);
            }
        }
    }

    return !failed;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:37,代码来源:PrimeTest.java


注:本文中的java.util.NavigableSet.contains方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。