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


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


Short类intValue()方法

  • intValue() 方法可在java.lang包。
  • intValue() 方法用于返回由转换为 int 类型(通过强制转换)的 Short 对象表示的值。
  • intValue() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • intValue() 方法从 short 到 int 的转换时不抛出异常。

用法:

    public int intValue();

参数:

  • 它不接受任何参数。

返回值:

这个方法的返回类型是int,它返回一个由这个 Short 对象表示的转换后的(从 short 类型到 int 类型)值。

例:

// Java program to demonstrate the example 
// of intValue() method of Short class

public class IntValueOfShortClass {
    public static void main(String[] args) {
        // Variables initialization
        short value1 = 100;
        short value2 = 200;

        // It returns short value denoted by this Short ob1 object
        // and converted to a int by calling ob1.intValue()
        Short ob1 = new Short(value1);

        // Display ob1 result
        System.out.println("ob1.intValue():" + ob1.intValue());

        // It returns short value denoted by this Short ob2 object
        // and converted to a int by calling ob2.intValue()
        Short ob2 = new Short(value2);

        // Display ob2 result
        System.out.println("ob2.intValue():" + ob2.intValue());
    }
}

输出

ob1.intValue():100
ob2.intValue():200


相关用法


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