标签:string类 对象 比较 方法 int col code 基本 包装
我们在想要把String类型的数据转换成int类型两者的功能均可实现
Integer c=Integer.valueOf("11");
Integer d=Integer.parseInt("11");
输出结果是一样的。
但通过查看两者的源代码可以知道
parseInt方法返回的是int基本类型,valueOf方法返回的是Integer的包装类型(对象)
标签:string类 对象 比较 方法 int col code 基本 包装
原文地址:https://www.cnblogs.com/a155-/p/12189347.html