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


Java Java.lang.Number.byteValue()用法及代码示例



描述

这个java.lang.Number.byteValue()方法以字节形式返回指定数字的值。这可能涉及舍入或截断。

声明

以下是声明java.lang.Number.byteValue()方法

public byte byteValue()

参数

NA

返回值

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

异常

NA

示例

下面的例子展示了 lang.Number.byteValue() 方法的用法。

package com.tutorialspoint;

public class NumberDemo {

   public static void main(String[] args) {

      // get a number as integer
      Integer x = new Integer(123456);

      // get a number as float
      Float y = new Float(9876f);

      // print their value as byte
      System.out.println("x as integer:" + x
         + ", x as byte:" + x.byteValue());
      System.out.println("y as float:" + y
         + ", y as byte:" + y.byteValue());
   }
}

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

x as integer:123456, x as byte:64
y as float:9876.0, y as byte:-108

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Number.byteValue() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。