Java基础——`Long` 和 `Integer` 类型之间的转换方法总结

在 Java 中,LongInteger 类型之间的转换是常见的需求。由于 Long 的范围比 Integer 大,所以转换时需要注意潜在的数据丢失问题。以下是将 Long 转换为 Integer 和将 Integer 转换为 Long 的常见方法:

1. Long 转换为 Integer

使用强制类型转换

Long 转换为 Integer 可以通过强制类型转换完成。但请注意,这种方法没有范围检查,可能会导致数据丢失或溢出。

java 复制代码
Long longValue = 123456789L;
Integer intValue = longValue.intValue();
使用 Math.toIntExact()

Math.toIntExact() 是 Java 8 引入的安全转换方法,它会在 Long 值超出 Integer 范围时抛出 ArithmeticException 异常。

java 复制代码
Long longValue = 123456789L;
try {
    Integer intValue = Math.toIntExact(longValue);
    System.out.println("Integer value: " + intValue);
} catch (ArithmeticException e) {
    System.out.println("Long value out of range for Integer");
}

2. Integer 转换为 Long

使用 Long 构造函数

Integer 转换为 Long 可以使用 Long 构造函数,或者使用 Long.valueOf() 方法。

java 复制代码
Integer intValue = 12345;
Long longValue = Long.valueOf(intValue);
使用自动装箱

由于 Java 的自动装箱(autoboxing),你可以直接将 Integer 赋值给 Long 变量,Java 会自动转换。

java 复制代码
Integer intValue = 12345;
Long longValue = intValue.longValue();

代码示例

java 复制代码
public class Main {
    public static void main(String[] args) {
        // Long to Integer
        Long longValue = 123456789L;
        
        // Method 1: Using intValue() method
        Integer intValue1 = longValue.intValue();
        System.out.println("Long to Integer (intValue()): " + intValue1);
        
        // Method 2: Using Math.toIntExact() method
        try {
            Integer intValue2 = Math.toIntExact(longValue);
            System.out.println("Long to Integer (Math.toIntExact()): " + intValue2);
        } catch (ArithmeticException e) {
            System.out.println("Long value out of range for Integer");
        }
        
        // Integer to Long
        Integer intValue = 12345;
        
        // Method 1: Using Long constructor
        Long longValue1 = Long.valueOf(intValue);
        System.out.println("Integer to Long (Long.valueOf()): " + longValue1);
        
        // Method 2: Using longValue() method
        Long longValue2 = intValue.longValue();
        System.out.println("Integer to Long (longValue()): " + longValue2);
    }
}

总结

  • LongInteger

    • 使用 intValue() 方法:简单但没有范围检查。
    • 使用 Math.toIntExact():安全,能捕捉超出范围的情况。
  • IntegerLong

    • 使用 Long.valueOf()longValue() 方法:简单且有效。

在进行这些转换时,务必考虑值范围,以避免数据丢失或溢出。

相关推荐
Libby博仙6 分钟前
Spring Boot 条件化注解深度解析
java·spring boot·后端
willingli8 分钟前
c语言经典100题 61-70题
c语言·开发语言·算法
我是小疯子6613 分钟前
深入解析C++右值引用与移动语义
java·开发语言·算法
Ethan Wilson16 分钟前
VS2019 C++20 模块相关 C1001: 内部编译器错误
开发语言·c++·c++20
better_liang16 分钟前
每日Java面试场景题知识点之-JUC锁的底层原理
java·并发编程·juc·锁机制·reentrantlock·readwritelock·底层原理
郝学胜-神的一滴18 分钟前
Python数据封装与私有属性:保护你的数据安全
linux·服务器·开发语言·python·程序人生
悟能不能悟20 分钟前
Elastic Stack 中两种主要查询语言 KQL (Kibana Query Language) 和 Lucene 的详细对比和解释。
java·开发语言
我是一只小青蛙88827 分钟前
Java连接MySQL数据库实战指南
java
夏末47235 分钟前
Java异常处理终极指南:从入门到企业级实战,让程序稳如老狗!
java·java ee
子非鱼92140 分钟前
SpringBoot快速上手
java·spring boot·后端