public static void main(String[] args) { String t = "5"; Integer integer = Integer.valueOf(t);
System.out.println(integer); // --------> 5 }
public static void main(String[] args) { String t = "5"; Integer integer = Integer.valueOf(t);
System.out.println(integer); // --------> 5 }
转载于:https://www.cnblogs.com/JonaLin/p/11419788.html