Home > Java > javaTutorial > Use of valueOf() method

Use of valueOf() method

藏色散人
Release: 2019-07-29 14:06:22
Original
8324 people have browsed it

Use of valueOf() method

The valueOf() method is used to return the native Number object value of the given parameter. The parameter can be a native data type, String, etc.

This method is a static method. This method can receive two parameters, one is a string and the other is the base.

This method has the following syntax formats:

static Integer valueOf(int i)
static Integer valueOf(String s)
static Integer valueOf(String s, int radix)
Copy after login

Parameters

i -- The integer of the Integer object.

s -- String of Integer objects.

radix --The radix used when parsing the string s, used to specify the base number used.

Return value

Integer valueOf(int i): Returns an Integer instance representing the specified int value.

Integer valueOf(String s): Returns an Integer object that holds the value of the specified String.

Integer valueOf(String s, int radix): Returns an Integer object that holds the value extracted from the specified String when parsed with the radix provided by the second parameter.

Example

public class Test{ 
public static void main(String args[]){
        Integer x =Integer.valueOf(9);
        Double c = Double.valueOf(5);
        Float a = Float.valueOf("80");               
        Integer b = Integer.valueOf("444",16);   // 使用 16 进制
        System.out.println(x); 
        System.out.println(c);
        System.out.println(a);
        System.out.println(b);
    }
}
Copy after login

Compile the above program and the output result is:

9
5.0
80.0
1092
Copy after login

Related recommendations: "Java Tutorial"

The above is the detailed content of Use of valueOf() method. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template