Java程序使用Integer.valueOf()将字符串转换为数字原始类型

Java中使用Integer.valueOf()方法将字符串转换为数字原始类型。

假设以下是我们的字符串。

String str = "989";

要将其转换为Integer基本类型,请使用Integer.valueOf()

Integer.valueOf(str)

让我们看看将字符串转换为Integer基本类型的完整示例。

示例

public class Demo {    public static void main(String[] args) {       String str = "989";       System.out.println(Integer.valueOf(str));    }}

输出结果

989