这是名为Integer的类的静态方法,它接受整数参数并将其解析为有符号的十进制整数。
public class IntegerDemo { public static void main(String[] args) { //解析字符串参数 int a = Integer.parseInt("12"); int b = Integer.parseInt("26"); int c = Integer.parseInt("54"); int m = a * b * c; System.out.print("Value after multiplying = " + m); } }
输出结果
Value after multiplying = 16848