當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.Byte.parseByte()用法及代碼示例



描述

這個java.lang.Byte.parseByte(String s)將字符串參數解析為帶符號的十進製字節。字符串中的字符必須都是十進製數字,除了第一個字符可以是ASCII減號'−'('\u002D')表示負值或ASCII加號'+'('\u002B')表示正值。

返回結果字節值,就像參數和基數 10 作為參數提供給 parseByte(java.lang.String, int) 方法一樣。

聲明

以下是聲明java.lang.Byte.parseByte()方法

public static byte parseByte(String s)throws NumberFormatException

參數

s- 包含要解析的字節表示的字符串

返回值

此方法返回由十進製參數表示的字節值。

異常

NumberFormatException- 如果字符串不包含可解析的字節。

示例

下麵的例子展示了 lang.Byte.parseByte() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class ByteDemo {

   public static void main(String[] args) {

      // create 2 byte primitives bt1, bt2
      byte bt1, bt2;

      // create and assign values to String's s1, s2
      String s1 = "+123";
      String s2 = "-123";

      /**
       *  static method is called using class name. 
       *  assign parseByte result on s1, s2 to bt1, bt2
       */
      bt1 = Byte.parseByte(s1);
      bt2 = Byte.parseByte(s2);

      String str1 = "Parse byte value of " + s1 + " is " + bt1;
      String str2 = "Parse byte value of " + s2 + " is " + bt2;

      // print bt1, bt2 values
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

Parse byte value of +123 is 123
Parse byte value of -123 is -123

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Byte.parseByte() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。