Java - Byte intValue() 方法



描述

Java Byte intValue() 方法返回此 Byte 作为 int 的值。

声明

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

public int intValue()

指定于

Number 类中的 intValue

参数

返回值

此方法在转换为 int 类型后返回此对象表示的数值。

异常

使用 new 运算符创建的 Byte 对象获取 Int 值示例

以下示例演示了使用 new 运算符创建的 Byte 对象的 Byte intValue() 方法的使用。我们创建一个 Byte 变量,并为其分配一个使用 new 运算符创建的 Byte 对象。然后创建一个 int 变量,并使用 intValue() 方法为其分配一个 int 值,然后打印结果。

package com.tutorialspoint;

public class ByteDemo {
   public static void main(String[] args) {

      // create a Byte object b
      Byte b;

      // assign value to b
      b = new Byte("100");

      // create a int primitive d
      int d;

      // assign primitive value of b to d
      d = b.intValue();

      String str = "Primitive int value of Byte object " + b + " is " + d;

      // print d value
      System.out.println( str );
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Primitive int value of Byte object 100 is 100

使用 valueOf(String) 方法创建的 Byte 对象获取 Int 值示例

以下示例演示了使用 valueOf(String) 方法创建的 Byte 对象的 Byte intValue() 方法的使用。我们创建一个 Byte 变量,并为其分配一个使用 valueOf(String) 方法创建的 Byte 对象。然后创建一个 int 变量,并使用 intValue() 方法为其分配一个 int 值,然后打印结果。

package com.tutorialspoint;

public class ByteDemo {
   public static void main(String[] args) {

      // create a Byte object b
      Byte b;

      // assign value to b
      b = Byte.valueOf("100");

      // create a int primitive d
      int d;

      // assign primitive value of b to d
      d = b.intValue();

      String str = "Primitive int value of Byte object " + b + " is " + d;

      // print d value
      System.out.println( str );
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Primitive int value of Byte object 100 is 100

使用 valueOf(byte) 方法创建的 Byte 对象获取 Int 值示例

以下示例演示了使用 valueOf(byte) 方法创建的 Byte 对象的 Byte intValue() 方法的使用。我们创建一个 Byte 变量,并为其分配一个使用 valueOf(byte) 方法创建的 Byte 对象。然后创建一个 int 变量,并使用 intValue() 方法为其分配一个 int 值,然后打印结果。

package com.tutorialspoint;

public class ByteDemo {
   public static void main(String[] args) {

      // create a Byte object b
      Byte b;

      // assign value to b
      b = Byte.valueOf((byte) 100);

      // create a int primitive d
      int d;

      // assign primitive value of b to d
      d = b.intValue();

      String str = "Primitive byte value of Byte object " + b + " is " + d;

      // print d value
      System.out.println( str );
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Primitive byte value of Byte object 100 is 100
java_lang_byte.htm
广告