在 Java 中将 Byte 转换为数字基本数据类型


要将 Byte 转换为数字基本数据类型,请使用以下方法 -

byteValue()
shortValue()
intValue()
longValue()
floatValue()

首先,让我们声明一个 Byte。

Byte byteVal = new Byte("35");

现在,让我们看看如何将其转换为长类型,这是一个简单的示例。

long longVal = byteVal.longValue();
System.out.println(longVal);

同样,你可以将其转换为其他基本数据类型,如下面完整示例所示 -

示例

 在线演示

public class Demo {
   public static void main(String args[]) {
      // byte
      Byte byteVal = new Byte("35");
      byte b = byteVal.byteValue();
      System.out.println(b);
      short shortVal = byteVal.shortValue();
      System.out.println(shortVal);
      int intVal = byteVal.intValue();
      System.out.println(intVal);
      long longVal = byteVal.longValue();
      System.out.println(longVal);
      float floatVal = byteVal.floatValue();
      System.out.println(floatVal);
      double doubleVal = byteVal.doubleValue();
      System.out.println(doubleVal);
   }
}

输出

35
35
35
35
35.0
35.0

更新日期:26-6-2020

342 浏览量

开启你的 职业生涯

完成课程获得认证

开始吧
广告