static eRat()
 {
     D = new eRatValue(8, null);
     C = new eRatValue(5, D);
     B = new eRatValue(3, C);
     A = new eRatValue(0, B);
 }
示例#2
0
 public eRatValue(int value, eRatValue next)
 {
     this.value = value;
     this.next  = next;
 }