标签: java casting wrapper
使用包装类将原语转换为对象时是否有名称? 我假设这也称为铸造正确吗?
答案 0 :(得分:5)
这称为自动装箱。例如。
Integer i = 5; // i is an object but has a primitive value.