Integer转成Long类型数据Intege 的数据有⼀个longValue()的函数,可以将其转换成long类型的数据
代码如下:
public static void main(String args[]) {
Integer a = 1;
System.out.println(a);
long b = a.longValue();
System.out.println(b);
List<Integer> aList=new ArrayList<>();
Integer a1 = 2;
Integer a2 = 3;
aList.add(a);
aList.add(a1);
aList.add(a2);
List<Long> bList = new ArrayList<>();
aList.stream().forEach(item->{
long temp = item.longValue();
bList.add(temp);
});
System.out.println(bList);
}
bigdecimal转换为integer运⾏结果:
1
1
[1, 2, 3]
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论