当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Byte intValue()用法及代码示例



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

用法

ByteObject.intValue()

返回值:它将ByteObject的值返回为int。


下面是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


相关用法


注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 Byte intValue() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。