Integer类型怎么转成Long类型
时间: 2024-03-21 21:40:23 浏览: 110
ft_bigID(生成19位的Long Integer类型的数据).sql
将Integer类型转换为Long类型可以通过将Integer类型的值作为参数传递给Long的构造函数来完成。示例代码如下:
```
Integer numInt = 123;
Long numLong = new Long(numInt);
```
或者,您可以使用自动装箱和拆箱特性来转换类型,代码如下:
```
Integer numInt = 123;
Long numLong = numInt.longValue();
```
需要注意的是,如果Integer类型的值超出了Long类型的范围,那么转换时会抛出NumberFormatException异常。
阅读全文