Cannot cast java.lang.Long to java.lang.Integer

August 08, 2024 作者: yijianhao 分类: java 浏览: 41 评论: 0

Cannot cast java.lang.Long to java.lang.Integer

if (type.equals(Integer.class)) {
     Integer result =  new Integer( Math.toIntExact((Long) o)); // o 是 Long类型的实例
 }


评论