University stuff.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

GenHylle.java 193B

123456
  1. interface GenHylle<T> {
  2. public int hentStorrelse();
  3. public void settInn(int plass, T ting) throws Exception;
  4. public boolean erLedig(int plass) throws Exception;
  5. public T hent(int plass);
  6. }