gpt4 book ai didi

java - 编写增量整数供应商

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:45:32 25 4
gpt4 key购买 nike

我正在尝试掌握 Java 8 函数式编程。我尝试“功能性地”编写以下 IntSupplier,但我一直遇到问题。

import java.util.function.IntSupplier;

@Test public void test_nonFunctional() {
IntSupplier supplier = new IntSupplier() {
private int nextInt = 0;
@Override public int getAsInt() {
return nextInt++;
}
};
}

这是我的尝试。这些问题在代码中标记为注释。

import org.junit.Test;

import java.util.concurrent.atomic.AtomicInteger;
import java.util.function.IntSupplier;

public class IntSupplierTest {
@Test public void test_nonFunctional() {
IntSupplier supplier = new IntSupplier() {
private int nextInt = 0;
@Override public int getAsInt() { return nextInt++; }
}; // Works but is not functional.
}

@Test public void test_naive() {
int nextInt = 0;
IntSupplier supplier = () -> nextInt++; // Doesn't compile: requires nextInt to be final.
}

@Test public void test_nextIntIsFinal() {
final int nextInt = 0;
IntSupplier supplier = () -> nextInt++; // Doesn't compile: nextInt can't be incremented because it's final.
}

@Test public void test_useWrapper() {
final AtomicInteger nextInt = new AtomicInteger(0);
IntSupplier supplier = () -> nextInt.getAndIncrement(); // It is not the same as my original question as this test uses an extra object.
}
}

如果答案很简单,如果不使用额外的对象就无法完成,请直说。

最佳答案

您对问题的定义已​​经不起作用。在功能中,没有参数就不能有不同的输出。这就是定义。但是如何创建数字序列您可以在 java 库中看到:java.util.function.IntUnaryOperator。它是这样使用的:

IntStream.iterate(0, i -> i+1).limit(10).foreach(System.out::printLn);

关于java - 编写增量整数供应商,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27900683/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com