Java Byte parseByte()方法

java.lang.Byte.parseByte(String s) 解析字符串参数作为有符号十进制字节。字符串中的字符必须是十进制数字,除非第一个字符为ASCII字符减号' - '(' u002D')来表示一个负值或ASCII码加号'+'(' u002B')以表示正值。

由此产生的字节值返回,就好像在参数和基数10作为参数传递给parseByte(java.lang.String, int) 方法。

1 语法

public static byte parseByte(String s)throws NumberFormatException

2 参数

s:要分析包含字节表示一个字符串

3 返回值

此方法将返回由十进制参数表示的字节值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Byte parseByte()方法
 */
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

 

热门文章

优秀文章