⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unorderedlistadt.java

📁 一个普通的计算器程序
💻 JAVA
字号:
//********************************************************************//  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -