Chapter 21. Fibonacci Example

21.1. Fibonacci Example: The Class

public static class Fibonacci {
    private int  sequence;
    private long value;

    public Fibonacci( final int sequence ) {
        this.sequence = sequence;
        this.value = -1;
    }

    ... setters and getters go here...
}
  • The sequence field is used to indicate the position of the object in the Fibonacci number sequence.
  • The value field shows the value of that Fibonacci object for that sequence position, using -1 to indicate a value that still needs to be computed.