基本类型包装类的概述

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/LeoZuosj/article/details/86754671

基本类型包装类的概述

  • A:为什么会有基本类型包装类

    • 将基本数据类型封装成对象的好处在于可以在对象中定义更多的功能方法操作该数据。
  • B:常用操作

    • 常用的操作之一:用于基本数据类型与字符串之间的转换。
  • C:基本类型和包装类的对应

      		byte 			Byte
      		short			Short
      		int				Integer
      		long			Long
      		float			Float
      		double			Double
      		char			Character
      		boolean			Boolean
    
package com.heima.wrapclass;
public class Demo01_Integer {
	public static void main(String[] args) {
		System.out.println(Integer.toBinaryString(60));
		System.out.println(Integer.toOctalString(60));
		System.out.println(Integer.toHexString(60));
	}
}

猜你喜欢

转载自blog.csdn.net/LeoZuosj/article/details/86754671