标题: 这个代码是接着我刚才发表的那个,代码太长了。。 [打印本页] 作者: 马超 时间: 2012-5-22 20:37 标题: 这个代码是接着我刚才发表的那个,代码太长了。。 package com.itcast.band;
public class constants
{
public static int MAX_SERVERS_TIME = 10000; //10S
public static int MIN_SERVER_TIME = 1000; //1S
/*定义一个普通客户间隔时间:*/
public static int COMMON_CUSTOMER_INTERVAL_TIME = 1;
}
package com.itcast.band;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
public class MainClass
{
public static void main(String[] args)
{
/*产生普通服务窗口:*/
for(int i = 1;i<5;i++)
{
ServiceWindow commonWindow = new ServiceWindow();
commonWindow.setWindowId(i);
commonWindow.setType(CustomerTypes.COMMON);
commonWindow.start();
}