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


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



描述

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

聲明

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

public int intValue()

指定者

類中的 intValueNumber

參數

NA

返回值

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

異常

NA

示例

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

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 int i1, i2
      int i1, i2;

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

      // assign int values of b1, b2 to i1, i2
      i1 = b1.intValue();
      i2 = b2.intValue();

      String str1 = "int value of Byte " + b1 + " is " + i1;
      String str2 = "int value of Byte " + b2 + " is " + i2;

      // print i1, i2 values
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

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

int value of Byte 123 is 123
int value of Byte -32 is -32

相關用法


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