我在 Eclipse 中编写一个斐波那契序列,这是我的代码-
public class FibonacciAlgorithm {
private int a = 0;
private int b = 1;
public FibonacciAlgorithm() {
}
public int increment() {
int temp = b;
b = a + b;
a = temp;
return value;
}
public int getValue() {
return b;
}
}
return value;
它在行中显示错误value cannot be resolved to a variable
。我没有看到任何其他错误。