unorderedlistadt.java

来自「一个普通的计算器程序」· Java 代码 · 共 20 行

JAVA
20
字号
//********************************************************************//  UnorderedListADT.java       Authors: Lewis/Chase////  Defines the interface to an unordered list collection. Elements//  are stored in any order the user desires.//********************************************************************package jss2;public interface UnorderedListADT<T> extends ListADT<T>{   /**  Adds the specified element to the front of this list */   public void addToFront (T element);   /**  Adds the specified element to the rear of this list */   public void addToRear (T element);   /**  Adds the specified element after the specified target */   public void addAfter (T element, T target);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?