LoginSignup
0
1

More than 3 years have passed since last update.

Java 数値 ⇔ 文字列変換

Posted at

はじめに

学習用のメモになります。

数値 ⇒ 文字列

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();
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1