当前位置: 代码迷 >> J2SE >> 怎么像 Integer.parseInt(input.getText()); 一样得到double类型还有其他的类型的数字呢
  详细解决方案

怎么像 Integer.parseInt(input.getText()); 一样得到double类型还有其他的类型的数字呢

热度:530   发布时间:2016-04-24 17:23:04.0
怎样像 Integer.parseInt(input.getText()); 一样得到double类型还有其他的类型的数字呢?
怎样像     Integer.parseInt(input.getText());     一样得到double类型还有其他的类型的数字呢?

------解决方案--------------------
Double.parseDouble()
Long.parseLong()
String.valueOf()
------解决方案--------------------
楼主自己想到了阿,自然是Double.parseDouble(input.getText())阿?
  相关解决方案