gpt4 book ai didi

java - 我在 java 8 lambda Predicate 上做错了什么?

转载 作者:搜寻专家 更新时间:2023-11-01 01:32:47 25 4
gpt4 key购买 nike

<分区>

This 不是我的问题的重复。我检查了一下,我的是如何使用正确的谓词是关于 removeIf 和 remove 之间的区别。

我是初级 Java 程序员。
昨天,我尝试按照本教程进行操作 https://dzone.com/articles/why-we-need-lambda-expressions
在学会了Lambda表达式和Predicate的使用之后,我自己写代码练习。
比如,对所有数字求和 if(n % 3 == 0 || n % 5 == 0)。这是我的代码。

public class Euler1Lambda {
long max;
public Euler1Lambda(long max) {
this.max = max;
}
public static boolean div3remainder0(int number) {
return number % 3 == 0;
}

public static boolean div5remainder0(int number) {
return number % 5 == 0;
}

public long sumAll() {
long sum = 0;
for(int i=1; i<max; i++) {
if (div3remainder0(i) ||div5remainder0(i)) {
sum += i;
}
}
return sum;
}

public long sumAllLambda(Predicate<Integer> p) {
long total = 0;
for (int i = 1; i< max; i++){
if (p.test(i)) {
total += i;
}
}
return total;
}

public static void main(String[] args) {
//conv
long startTime = System.currentTimeMillis();
for(int i = 0; i < 10; i++){
new Euler1Lambda(100000000).sumAll();
}
long endTime = System.currentTimeMillis();
long conv = (endTime - startTime);
System.out.println("Total execution time: " + conv);
//lambda
startTime = System.currentTimeMillis();
for(int i = 0; i < 10; i++){
new Euler1Lambda(100000000).sumAllLambda(n -> div3remainder0(n) || div5remainder0(n));
}
endTime = System.currentTimeMillis();
long lambda = (endTime - startTime);
System.out.println("Total execution time: " + lambda);
System.out.println("lambda / conv : " + (float)lambda/conv);
}
}

在此代码中,进行了计时测试。结果是这样的。

Total execution time conv: 1761
Total execution time lambda: 3266

lambda / conv : 1.8546281

如您所见,带谓词的 lambda 表达式比简单的 for 循环要慢。
我不知道为什么会这样。
我究竟做错了什么?或者只是谓词使用起来太慢了?

25 4 0