Integer 比较大小
今天在项目里发现了之前的代码如下所示:if(CommonUtil.formatInteger(videoUrlEntity_db.getEpLen()) != CommonUtil.formatInteger(videoUrlEntity.getEpLen())){...}在整理数据时发现有很多并没有执行方法体,后来仔细分析得知,Integer的比较需要慎用 == 或者 !=比较数值过程中:1、数值类型,值在-128 ~127的之间的数值对象,在Integer或者Long....的内.