📄 yellowriver.java
字号:
/*
* s2javaoo.lg.ch04.YellowRiver.java
* 2007-7-23
* 黄河类
*/
package s2javaoo.lg.ch04;
public class YellowRiver extends River {
/**
* 黄河流动
* @param waterLine 水位
* @throws Exception
*/
public void flow() throws Exception {
if ( this.getWaterLine() - this.getWarning() > 5 ) { // 黄河水位高出警戒水位5时,抛出异常
throw new Exception("黄河决堤了");
} else {
System.out.println("黄河在流:黄河之水天上来");
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -