なぜ私たちができるのか疑問に思っていました:
Long l = 2L;
Float f = 2f;
Double d = 2d;
あるいは
Double d = new Double(2);
そしてそうではない
Short s = 2s; //or whatever letter it could be
または
Short s = new Short(2); //I know in this case 2 is an int but couldn't it be casted internally or something?
String または short を使用してコンストラクターを取得する必要があるのはなぜですか。