dynamic.java

来自「Java source code for the Ant Colony Opti」· Java 代码 · 共 17 行

JAVA
17
字号
package jwo.jpss.ants;   // Part of the ant simulation package.

//  *******************************************************
/** Interface for things that evolve through time.
  * @author Jo Wood
  * @version 1.1, 17th January, 2000.
  */
//  *******************************************************

public interface Dynamic
{
    /** Defines the changes that occur to the object over time.
      * This method should be called whenever time advances by
      * 1 unit.
      */
    public abstract void evolve();
}

⌨️ 快捷键说明

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