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


Java Short intValue()用法及代码示例


Short类的intValue()方法用于返回Short对象对应的int值。

用法

public int intValue()

参数

不适用

返回值

将 Short 值转换为 int 类型后返回对应的数值。

例子1

public class ShortIntValueExample1 { 
public static void main(String[] args) { 
 Short sValue = 105; //with positive value 
  // it returns int type value        
int  result = sValue.intValue();  
 System.out.println(" Short "+sValue+" converted into intValue is = " + result); 
 } 
}

输出:

Short 105 converted into intValue is = 105 

例子2

public class ShortIntValueExample2 { 
public static void main(String[] args) { 
Short sValue = -55; //with Negative value 
 // it returns int type value        
int  result = sValue.intValue();  
 System.out.println(" Short "+sValue+" converted into intValue is = " + result); 
 } 
}

输出:

Short -55 converted into intValue is = -55






相关用法


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