package com.mth.bank;
/*
*
* 常量定义单独的类
* 用途 serviceTime有一定的范围
* 来定义最大时间和最小时间
*
* */
public class Constants {
public static int MIN_SERVICE_TIME = 1000;// 1秒
public static int MAX_SERVICE_TIME = 10000;// 10秒
public static int COMMON_CUSTOMER_INTERVAL_TIME = 1;// 产生普通客户的速度
}
常量类Constants
最新推荐文章于 2021-04-17 09:24:10 发布