📜  Java中的字节 intValue() 方法及示例

📅  最后修改于: 2022-05-13 01:54:25.457000             🧑  作者: Mango

Java中的字节 intValue() 方法及示例


Byte 类的intValue()方法是Java中的一个内置方法,用于将该 Byte 对象的值作为 int 返回。

句法

ByteObject.intValue()

返回值:它以int形式返回 ByteObject 的值。

下面是Java中 intValue() 方法的实现:

示例 1:

// Java code to demonstrate
// Byte intValue() method
  
class GFG {
    public static void main(String[] args)
    {
  
        // byte value
        byte a = 17;
  
        // wrapping the byte value
        // in the wrapper class Byte
        Byte b = new Byte(a);
  
        // intValue of the Byte Object
        int output = b.intValue();
  
        // printing the output
        System.out.println("Integer value of "
                           + a + " is : " + output);
    }
}
输出:
Integer value of 17 is : 17

示例 2:

// Java code to demonstrate
// Byte intValue() method
  
class GFG {
    public static void main(String[] args)
    {
  
        String value = "17";
  
        // wrapping the byte value
        // in the wrapper class Byte
        Byte b = new Byte(value);
  
        // intValue of the Byte Object
        int output = b.intValue();
  
        // printing the output
        System.out.println("Integer value of "
                           + b + " is : " + output);
    }
}
输出:
Integer value of 17 is : 17