如何将String []或Object []的组件转换为其他类型
这个问题在这里已经有了答案:
你可以使用Integer.parseInt()
而没有问题。
int i = input[0] // i is an int while input[0] is a String
现在
int i=Integer.parseInt(input[0])
将String
转换为int
的Integer.parseInt()
链接地址: http://www.djcxy.com/p/20931.html上一篇: How to convert component of String[] or Object[] to other type
下一篇: Getting an information about type of input ( main args )