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


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



描述

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

聲明

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

public short shortValue()

覆蓋

類中的shortValueNumber

參數

NA

返回值

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

異常

NA

示例

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

package com.tutorialspoint;

import java.lang.*;

public class ByteDemo {

   public static void main(String[] args) {

      // create 2 Byte objects b1, b2
      Byte b1, b2;

      // create 2 short primitives s1, s2
      short s1, s2;

      // assign values to b1, b2
      b1 = new Byte("10");
      b2 = new Byte("-10");

      // assign short values of b1, b2 to s1, s2
      s1 = b1.shortValue();
      s2 = b2.shortValue();

      String str1 = "short value of Byte " + b1 + " is " + s1;
      String str2 = "short value of Byte " + b2 + " is " + s2;

      // print s1, s2 values
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

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

short value of Byte 10 is 10
short value of Byte -10 is -10

相關用法


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