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

📄 distribution.java

📁 发布/订阅系统路由重配算法,可应用于ad hoc环境
💻 JAVA
字号:
package sim;/** * Defines a set of methods a distribution (of values) must provide. */public interface Distribution {	/**	 * Returns the next value.	 * @return the next value.	 */	public double getValue();	/**	 * Returns the distribution's expected value.	 * @return the distribution's expected value.	 */	public double getExpectedValue();	/**	 * Returns the distribution's variance.	 * @return the distribution's variance.	 */    public double getVariance();}

⌨️ 快捷键说明

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