📄 distribution.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 + -