1. toString()来源 2. toString()目的 3. toString()实现(JDK8) 1. toString()来源 源于java.lang.Object类,源码如下: /** * Returns a string representation of the object. In general, the * {@code toString} method returns a string that * "textually represents" this ob…
1.基本类型和包装类 基本类型和包装类可通过自动装箱和拆箱实现. int i = 24; Integer a = new Integer(i); //手动装箱 Integer b = i; //自动装箱 int x = a; //自动拆箱 int y = a.intValue(); //受到拆箱 2.基本类型转String a.使用包装类的toString方法 int i =24; String str1 = Integer.toString(i); b.使用String类的valueOf方法 …