Java Integer byteValue()方法

java.lang.Integer.byteValue() 方法返回这个整数作为一个字节的值。

1 语法

public byte byteValue()

2 参数

3 返回值

此方法返回转换后该对象表示输入字节的数值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Integer byteValue()方法
 */
import java.lang.*;

public class IntegerDemo {

   public static void main(String[] args) {

     Integer obj = new Integer(10);
 
     // returns the value of Integer as a byte
     byte b = obj.byteValue();
     System.out.println("Value of b = " + b);
   }
}

输出结果为:

Value of b = 10

 

热门文章

优秀文章