当前位置 : 主页 > 编程语言 > java >

java 开发 断言代码

来源:互联网 收集:自由互联 发布时间:2022-07-07
public static void notNull ( Object object , ErrorEnum error ) { if ( object == null ) { throw new ServiceException ( error . getCode (), error . getMsg ()); } }
public static void notNull(Object object, ErrorEnum error) {
if (object == null) {
throw new ServiceException(error.getCode(), error.getMsg());
}
}


上一篇:JAD的安装、配置及集成IDEA
下一篇:没有了
网友评论