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

📄 startsimplebug.java

📁 SCA的学习代码
💻 JAVA
字号:
// StartSimpleBug.java
// The Java SimpleBug application. 

import swarm.Globals;
import swarm.defobj.Zone;

public class StartSimpleBug
{
    // The size of the bug's world and its initial position.
    static int worldXSize = 80;
    static int worldYSize = 80;
    static int xPos = 40;
    static int yPos = 40;

    public static void main (String[] args)
    {
	int i;
	SimpleBug abug;

        // Swarm initialization: all Swarm apps must call this first.
        Globals.env.initSwarm ("SimpleBug", "2.1", 
			       "bug-swarm@santafe.edu", args);

	// Create an instance of a SimpleBug, abug, and place it 
	// within its world at (xPos, yPos). The bug is created in
	// Swarm's globalZone and is given a "bug id" of 1.
	abug = new SimpleBug(Globals.env.globalZone, worldXSize, worldYSize, 
			     xPos, yPos, 1);

	// Loop our bug through a series of random walks asking it to
	// report its position after each one.
	for (i = 0; i < 100; i++)
	{
	    abug.randomWalk();
	    abug.reportPosition();
	}
    }
}


⌨️ 快捷键说明

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