将值获取为整数
如何获取对象的值并将其存储在变量int中?在字符串中,我这样做:
String k = s_extend.getValue().toString();
inint 怎么样?
如何获取对象的值并将其存储在变量int中?在字符串中,我这样做:
String k = s_extend.getValue().toString();
inint 怎么样?
您可以使用 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