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

📄 recyclable.java

📁 专业汽车级嵌入式操作系统OSEK的源代码
💻 JAVA
字号:
package lejos.util;/** * Represents a recyclable object. * @see lejos.util.Recycler */public interface Recyclable {	/**	 * Called when the Recyclable is allocated by a Recycler.	 */	public void init();		/**	 * Called when this Recyclable is no longer needed.	 * Resources should be disposed in this method, e.g. this is where	 * any nested Recyclables would be released.	 */	public void release();	/**	 * Must return Recyclable most recently set with	 * <code>setNextRecyclable</code>.	 * @see lejos.util.Recyclable#setNextRecyclable	 */    public Recyclable getNextRecyclable();	/**	 * Stores a Recyclable object.	 * @see lejos.util.Recyclable#getNextRecyclable	 */    public void setNextRecyclable (Recyclable r);	}

⌨️ 快捷键说明

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