當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.Short.intValue()用法及代碼示例



描述

這個java.lang.Short.intValue() 方法將此 Short 的值作為 int 返回。

聲明

以下是聲明java.lang.Short.intValue()方法

public int intValue()

參數

NA

返回值

此方法返回轉換為 int 類型後此對象表示的數值。

異常

NA

示例

下麵的例子展示了 java.lang.Short.intValue() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class ShortDemo {

   public static void main(String[] args) {

      // create short object and assign value to it
      short sval = 30;
      Short sobj = new Short(sval);

      // returns int value of Short
      int intValue = sobj.intValue(); 

      // printing int value
      System.out.println("int value of Short is = " + intValue);
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

int value of Short is = 30

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Short.intValue() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。