homeduke Prof. Dr. Uwe Schmidt FH Wedel

Die Datei: Count.java


weiter
   1/**
   2  *
   3  * f(i) = i
   4  *
   5  * --> 0 1 2 3 4 5 ...
   6  */
   7
   8//--------------------
   9
  10public
  11class Count extends Sequence {
  12  private
  13  long cnt;
  14
  15  public
  16  Count() {
  17    this(0);
  18  }
  19
  20  public
  21  Count(long start) {
  22    cnt = start;
  23  }
  24
  25  public
  26  long next() {
  27    return cnt++;
  28  }
  29}
  30
  31//--------------------
  32

Die Quelle: Count.java


Letzte Änderung: 29.04.2013
© Prof. Dr. Uwe Schmidt
Prof. Dr. Uwe Schmidt FH Wedel