当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Integer shortValue()用法及代码示例


Integer.shortValue()是java.lang的内置方法,该方法以short类型返回此Integer的值。

用法:

public short shortValue()

参数:该方法不带任何参数。


返回值:该方法将其转换为short类型后,返回此对象表示的整数值。

以下示例程序旨在说明Integer.shortValue()方法:
示例1:对于正整数。

// Java program that demonstrates 
// Integer.shortValue() method 
  
import java.lang.*; 
  
public class Geeks { 
  
    public static void main(String[] args) 
    { 
  
        Integer sh_object = new Integer(763); 
  
        // It will return the value of this Integer as a short type 
        short sh_value = sh_object.shortValue(); 
        System.out.println(" The Value of sh_value = " + sh_value); 
    } 
}
输出:
The Value of sh_value = 763

示例2:为负数。

// Java program that demonstrates 
// Integer.shortValue() method 
import java.lang.*; 
  
public class Geeks { 
  
    public static void main(String[] args) 
    { 
  
        Integer sh_object = new Integer(-43); 
  
        // It will return the value of this Integer as a short type 
        short sh_value = sh_object.shortValue(); 
        System.out.println(" The Value of sh_value = " + sh_value); 
    } 
}
输出:
The Value of sh_value = -43

示例3:用于十进制值和字符串。
注意:当将十进制值和字符串作为参数传递时,它将返回错误消息。

// java program that demonstrates 
// Integer.shortValue() method 
import java.lang.*; 
  
public class Geeks { 
  
    public static void main(String[] args) 
    { 
  
        // passing a decimal value 
        Integer sh_object = new Integer(27.51); 
  
        short sh_value = sh_object.shortValue(); 
        System.out.println(" The Value of sh_value = " + sh_value); 
  
        // passing a string 
        Integer sh_object2 = new Integer("51"); 
  
        short sh_value2 = sh_object2.shortValue(); 
        System.out.println(" The Value of sh_value2 = " + sh_value2); 
    } 
}

输出:

prog.java:10: error: no suitable constructor found for Integer(double)
    Integer sh_object = new Integer(27.51);
                        ^
    constructor Integer.Integer(int) is not applicable
      (argument mismatch; possible lossy conversion from double to int)
    constructor Integer.Integer(String) is not applicable
      (argument mismatch; double cannot be converted to String)
1 error


相关用法


注:本文由纯净天空筛选整理自ankita_chowrasia大神的英文原创作品 Integer shortValue() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。