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


Java Byte valueOf()用法及代碼示例


Java Byte 類的 valueOf() 方法返回一個字節對象,該對象包含指定字符串的指定字節值。

第三種語法返回一個 Byte 對象,當使用給定的基數進行解析時,該對象表示指定的字符串。

用法:

public static Byte valueOf (byte b)  
public static Byte valueOf(String s) throws NumberFormatException
public static Byte valueOf(String s, int radix) throws NumberFormatException

參數:

x- 一個字節值

s- 要解析的字符串

radix- 用於解釋 s 的基數

拋出

valueOf() 方法拋出:

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

返回值

此方法返回一個字節對象,其中包含由 b 或字符串或指定基數中的字符串參數表示的值。

例子1

public class JavaByteValueOfExample1 {
    public static void main(String[] args) {
        // returns a byte object holding the specified byte value
        Byte byte1=8;
        System.out.println("valueOf() method returns:"+Byte.valueOf(byte1));
    }
}

輸出:

valueOf() method returns:8

例子2

public class JavaByteValueOfExample2 {
    public static void main(String[] args) {
        // returns a byte object holding the specified String value
        String str="56";
        System.out.println("valueOf() method returns:"+Byte.valueOf(str));
    }
}

輸出:

valueOf() method returns:56

例子3

public class JavaByteValueOfExample3 {
    public static void main(String[] args) {
        // returns a byte object holding the specified String value
        String str="null";
        //return an exception if the string does not contain a parsable byte
        System.out.println("valueOf() method returns:"+Byte.valueOf(str));
    }
}

輸出:

Exception in thread "main" java.lang.NumberFormatException:For input string:"null"
	at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
	at java.lang.Integer.parseInt(Integer.java:580)
	at java.lang.Byte.parseByte(Byte.java:149)
	at java.lang.Byte.valueOf(Byte.java:205)
	at java.lang.Byte.valueOf(Byte.java:231)
	at com.JavaTpoint.JavaByteValueOfExample3.main(JavaByteValueOfExample3.java:7)

示例 4

public class JavaByteValueOfExample4 {
    public static void main(String[] args) {
        // returns a Byte object which represents the specified String when parsed with the given radix
        String str="36";
        int radix=Character.MAX_RADIX;
        //return an exception if the string does not contain a parsable byte
        System.out.println("valueOf() method returns:"+Byte.valueOf(str,radix));
    }
}

輸出:

valueOf() method returns:114





相關用法


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