Java中怎么将Long类型转换成Integer或int类型?

2025-04-02 12:25:17
推荐回答(1个)
回答1:

使用强制转换就可以转成int类型:
package com.qiu.lin.he;

public class San {
public static void main(String[] args) {

long lo = 1;
int ceInt = (int) lo;// 进行强制转换
System.out.println(ceInt);
}
}