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

📄 serverinfo.java

📁 ALGAE是一个快速创建算法演示的框架。目前支持的算法实现语言包括java和c
💻 JAVA
字号:
package edu.odu.cs.zeil.AlgAE.Server;import edu.odu.cs.zeil.AlgAE.Application;import edu.odu.cs.zeil.AlgAE.Server.Server;/** *  The thread within which the AlgAE server is launched. *  This provides access (via Thread.currentThread()) to the *  application-specific structures. * *  @author Steven J Zeil **/public class ServerThread extends Thread{  private String title;  private Server server;  private Application application;    ServerThread(String theTitle,	       Application applic,	       MessageIO serverIO)  {    title = theTitle;    application = applic;    server = new Server (serverIO);  }    Application getApplication()  {    return application;  }    Server getServer()  {    return server;  }      public void run()  {    server.run(title);  }}

⌨️ 快捷键说明

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