Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java で、特別にフォーマットされた double の文字列表現を double に変換するにはどうすればよいですか?
たとえば、1.00 は 1d-2 として表され、1.25 は 1.25? として表されます。
ありがとう
何らかの方法でその 1d-2 を適切な double (例: 1.0 または 1.5) に変換できる場合は、 double.parseDouble(); を使用してください。