Convert string to float?

后端 未结 6 977
谎友^
谎友^ 2020-12-09 07:49

Just as title says. I don\'t believe it is possible to do this but if it is let me know.

This is needed for a bukkit (minecraft server) plugin I\'m writing. I want

6条回答
  •  执笔经年
    2020-12-09 08:09

    Use Float.valueOf(String) to do the conversion.

    The difference between valueOf() and parseFloat() is only the return. Use the former if you want a Float (object) and the latter if you want the float number.

提交回复
热议问题