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


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



描述

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

聲明

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

public short shortValue()

參數

NA

返回值

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

異常

NA

示例

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

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 = 50;
      Short sobj = new Short(sval);

      // returns short value of Short
      short shortValue = sobj.shortValue(); 

      // printing short value
      System.out.println("short value of given Short is = " + shortValue);
   }
}

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

short value of given Short is = 50

相關用法


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