我收到字符串" 23 45"我需要获得值为23的2个变量(int a)和值为45的(int b)
答案 0 :(得分:2)
如果您的输入字符串名称为“ ”,那么我们将:
String in = "23 45";
String s[] = in.split(" ");
int out[] = new int[s.length];
for(int i = 0 ; i < s.length ; i++)
out[i] = Integer.parseInt(s[i]);
输出现在在数组
中