在Java中将Long转换为数字原始数据类型
假设我们在这里有Long对象。
Long myObj = new Long("9879");现在,如果要将此Long转换为short基本数据类型。为此,请使用内置shortValue()方法-
// converting to short primitive types short shortObj = myObj.shortValue(); System.out.println(shortObj);
以相同的方式将Long转换为另一个数字原始数据类型int。为此,请使用内置intValue()方法-
// converting to int primitive types int intObj = myObj.intValue(); System.out.println(intObj);
以下是一个示例,其中我们将Long转换为数字基本类型short,int,float等-
示例
public class Demo {
public static void main(String[] args) {
Long myObj = new Long("9879");
//转换为数字原始类型
short shortObj = myObj.shortValue();
System.out.println(shortObj);
int intObj = myObj.intValue();
System.out.println(intObj);
float floatObj = myObj.floatValue();
System.out.println(floatObj);
double doubleObj = myObj.doubleValue();
System.out.println(doubleObj);
}
}输出结果
9879 9879 9879.0 9879.0
热门推荐
6 保研的祝福语简短
10 年轻20岁祝福语简短
11 朋友结婚祝福语信息简短
12 女孩婚礼贺卡祝福语简短
13 30段点歌简短祝福语
14 虎年春节祝福语图文简短
15 写给后妈祝福语大全简短
16 简短回复生日祝福语
17 校长送毕业祝福语简短
18 毕业立体贺卡祝福语简短