longValue()
方法longValue()方法在java.lang包中可用。
longValue()方法用于返回此Short对象表示的值,该对象转换为long类型(通过强制转换)。
longValue()方法是一种非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。
从Short转换为long时,longValue()方法不会引发异常。
语法:
public long longValue();
参数:
它不接受任何参数。
返回值:
此方法的返回类型为long,它返回此Short对象表示的转换后的值(从short类型转换为long类型)。
示例
//Java程序演示示例 //的longValue()短类的方法 public class LongValueOfShortClass { public static void main(String[] args) { //变量初始化 short s1 = 20; short s2 = 30; //它返回由此Short ob1对象表示的short值 //转换为long Short ob1 = new Short(s1); //显示ob1结果 System.out.println("ob1.longValue(): " + ob1.longValue()); //它返回此Short ob2对象表示的short值 //转换为long Short ob2 = new Short(s2); //显示ob2结果 System.out.println("ob2.longValue(): " + ob2.longValue()); } }
输出结果
ob1.longValue(): 20 ob2.longValue(): 30