#はじめに
学習用のメモになります。
#数値 ⇒ 文字列
String s = String.valueOf(i);
#文字列 ⇒ 数値
int i = Integer.parseInt(s);
Javaコーディング規約などでも推奨されています。
でもこんな方法でも変換はできます。
#数値 ⇒ 文字列
String s = "" + i;
String s = new Integer(i).toString();
String s = Integer.toString(i);
#文字列 ⇒ 数値
int i = new Integer(s).intValue();
int i = Integer.valueOf(s).intValue();