📌  相关文章
📜  如何将 int 转换为 Integer - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:46.199000             🧑  作者: Mango

代码示例1
public class IntToIntegerExample {
public static void main(String[] args) {
int i = 10;
Integer intObj = new Integer(i);
System. out. println(intObj);