Eclipse の入力候補なんかで出せちゃうのできちんと覚えてないのでメモしておきます。
今後、何かの役に立てれば…。
文字列から数値型に変換
Integer.parseInt(str)
Short.parseShort(str)
Byte.parseByte(str)
Long.parseLong(str)
Float.parseFloat(str)
Double.parseDouble(str)
Eclipse の入力候補なんかで出せちゃうのできちんと覚えてないのでメモしておきます。
今後、何かの役に立てれば…。
Integer.parseInt(str)
Short.parseShort(str)
Byte.parseByte(str)
Long.parseLong(str)
Float.parseFloat(str)
Double.parseDouble(str)
String.valueOf(int)
String.valueOf(short)
String.valueOf(byte)
String.valueOf(long)
String.valueOf(float)
String.valueOf(double)