toString
Object class
toString
toString関数
ポイント値を
(int値はprimitive datatype)
Integer a = 10;
System.out.println(" " + a.toString());
// 결과 : 10
System.out.println(" " + Integer.toString(a));
// 결과 : 10
int b = 20;
System.out.println(" " + b.toString());
// 결과 : 에러
System.out.println(" " + Integer.toString(b));
// 결과 : 20
toStringメソッド
intとIntegerの違い
int (long, float, double …)
元のデータ型
算術演算
nullに初期化できません
Integer
Wrapper class(オブジェクト)
展開しないと算術演算できない
空の値を処理可能→SQLとの併用が容易
int c = 10;
Integer integer = c;
//인티져를 인트로 (Auto unboxing)
int c1 = integer;
//인트를 인티져로 (Auto boxing)
System.out.println(" " + c);
//결과 : 10
System.out.println(" " + c1);
//결과 : 10
Reference
この問題について(toString), 我々は、より多くの情報をここで見つけました https://velog.io/@cyhse7/Object-class-toStringテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol