public static void main(String[] args) {
int i = 5;
String str = String.valueOf(i);
System.out.println(str);
Integer num = Integer.valueOf(str);
System.out.println(num * 15);
}
}
===== 実行結果 =====
5
75
====================
実行結果の5はString型なので演算はできません。
逆に、実行結果の75はint型なので演算が可能です。
† 地球の末路!? †
【このカテゴリーの最新記事】
-
no image
-
no image