Integer类及Character类的认识
IntegerInteger类是int类型的包装类类型,Integer类,在jdk1时就已经存在了,但是“自动装箱”这个机制在jdk1.5后出现的,既然有自动装箱也肯定会有“自动拆箱”了,下面我会一一介绍。 首先我们先看看Integer提供的静态功能:public static String toBinaryString(int i)public static String toOctalStri...