如何获取对象的值并将其存储在变量int中?在字符串中我这样做:
String k = s_extend.getValue().toString();
在int中怎么样?
答案 0 :(得分:10)
您可以使用Integer.valueOf()或Integer.parseInt();除非你的问题还有更多类似的东西 -
public static void main(String[] args) {
String str = "1";
int a = Integer.valueOf(str); // java.lang.Integer return(ed)
int b = Integer.parseInt(str); // primitive (int) return(ed)
System.out.printf("a = %d, b = %d\n", a, b);
}
在我的机器上,运行它会给出
a = 1, b = 1