0

未知のデータ型とint. ノードの最大値を取得する関数を作成しようとしていますが、データ型は E ではなくintです。

これまでの私のコードは..

public E getMax() {
  if (isEmpty()) {
    throw new NoSuchElementException(" error " ) ; 
  } else {
    Node n = first;

    E x ; 
    int max = 0 ; 
    while (n!=null) {
      if (n.data  > x) {
        max = n.data;
      }
    }
    return x;
  }
}
4

1 に答える 1