simplembsdemo1.java

来自「java学习的好范例」· Java 代码 · 共 76 行

JAVA
76
字号
// AP(r) Computer Science Marine Biology Simulation:// The SimpleMBSDemo1 class is copyright(c) 2002 College Entrance// Examination Board (www.collegeboard.com).//// This class is free software; you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation.//// This class is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the// GNU General Public License for more details./** *  AP&reg; Computer Science Marine Biology Simulation:<br> *  The <code>SimpleMBSDemo1</code> class provides a main method that creates *  a simulation of a number of fish swimming in a bounded environment. *  It also creates a simple window in which to view the environment *  after each timestep in the simulation. Unlike the full version of *  the simulation program, <code>SimpleMBSDemo1</code> does not use an object *  of the <code>Simulation</code> class. * *  <p> *  This class will NOT be tested on the Advanced Placement exam. * *  <p> *  The <code>SimpleMBSDemo1</code> class is *  copyright&copy; 2002 College Entrance Examination Board *  (www.collegeboard.com). * *  @author Alyce Brady *  @author Chris Nevison *  @version 1 July 2002 **/public class SimpleMBSDemo1{    // Specify number of rows and columns in environment.    private static final int ENV_ROWS = 10;      // rows in environment    private static final int ENV_COLS = 10;      // columns in environment    // Specify how many timesteps to run the simulation.    private static final int NUM_STEPS = 15;     // number of timesteps    // Specify the time delay for each step    private static final int DELAY = 1000;        // delay in milliseconds    /** Start the Marine Biology Simulation program.     *  The String arguments (args) are not used in this application.     **/    public static void main(String[] args)    {        // Construct an empty environment and several fish in the context        // of that environment.        BoundedEnv env = new BoundedEnv(ENV_ROWS, ENV_COLS);        Fish f1 = new Fish(env, new Location(2, 2));        Fish f2 = new Fish(env, new Location(2, 3));        Fish f3 = new Fish(env, new Location(5, 8));        // Construct an object that knows how to draw the environment with        // a delay; display the initial configuration of the environment.        SimpleMBSDisplay display = new SimpleMBSDisplay(env, DELAY);        display.showEnv();        // Run the simulation for the specified number of steps.        for ( int i = 0; i < NUM_STEPS; i++ )        {            f1.act();            f2.act();            f3.act();            display.showEnv();        }    }}

⌨️ 快捷键说明

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