Posted on 2011-04-25 21:46
RTY 阅读(306)
评论(0) 编辑 收藏 引用 所属分类:
编程常识
1、使用异常而非返回码
例子:
public class DeviceController {
public void sendShutDown() {
try {
tryToShutDown();
} catch (DeviceShutDownError e) {
logger.log(e);
}
private void tryToShutDown() throws DeviceShutDownError {
..
}
2. 别返回null值
检查null 值出现的问题