码迷,mamicode.com
首页 > 编程语言 > 详细

Java日志第27天 2020.8.1

时间:2020-08-01 21:22:40      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:bsp   传递   lazy   直接   val   string类   转换   array   com   

包装类

基本数据类型使用起来非常方便,但是没有操作这些数据方法。

我们可以使用一个类,把基本类型的数据装起来,在类中定义一些方法,这个类就叫做包装类。

基本数据类型对应的包装类位于java.lang包中。

注意int类型所对应的包名称是Integer,char类型对应的包名称是character。

 

装箱与拆箱

装箱

装箱是指把基本类型的数据包装到包装类中。

构造方法:

1.Integer( int value ) 构造一个新分配的Integer对象,它表示指定的int值

public class Demo01Integer {

    public static void main(String[] args) {
        
        Integer integer = new Integer(1);
        System.out.println(integer);
        
    }
}

2.Integer ( String s ) 构造一个新分配的Integer对象呢,它表示String参数所指示的int值

public class Demo01Integer {

    public static void main(String[] args) {

        Integer integer = new Integer("2");
        System.out.println(integer);

    }
}

传递的字符串必须是基本类型的字符串,否则会抛出异常

静态方法:

1.static Integer valueOf ( int i )

public class Demo01Integer {

    public static void main(String[] args) {

        Integer integer = Integer.valueOf(2);
        System.out.println(integer);

    }
}

2.static Integer valueOf(String s)

public class Demo01Integer {

    public static void main(String[] args) {

        Integer integer = Integer.valueOf("3");
        System.out.println(integer);

    }
}

拆箱

拆箱是指在包装类中取出这些基本类型的数据。

成员方法:

int intValue() 以int类型返回该Integer的值

public class Demo01Integer {

    public static void main(String[] args) {

        Integer integer = Integer.valueOf("3");
        System.out.println(integer);

        int i = integer.intValue();
        System.out.println(i);

    }
}

 

自动装箱与自动拆箱

public class Demo01Integer {

    public static void main(String[] args) {

        //自动装箱:直接把int类型的整数赋给包装类
        Integer integer = 1;
        
        /*
        自动拆箱
        integer+2进行了自动拆箱处理
        把integer转换为整数类型,再加2
        之后再一次进行装箱处理,把整数赋给包装类
         */
        integer = integer + 2;

    }
}

由此可知,在进行ArrayList方法增加元素时,运用到自动装箱。

 

基本类型与字符串类型之间的转换

public class DemoMain {

    public static void main(String[] args) {
        int i = 100;
        //基本类型 -> 字符串类型

        //1.在数据后加一个空字符串
        String s1 = i + "";
        System.out.println(s1+100);//100100,而不是200

        //2.包装类中的静态方法
        String s2 = Integer.toString(i);
        System.out.println(s2+100);

        //3.String类中的toString(int i)方法
        String s3 = String.valueOf(i);
        System.out.println(s3+100);

        System.out.println("==============");
        // 字符串类型 -> 基本类型
        int i1 = Integer.parseInt(s3);
        System.out.println(i1+100);//200,而不是100100
    }
}

结果如下:

技术图片

 

Java日志第27天 2020.8.1

标签:bsp   传递   lazy   直接   val   string类   转换   array   com   

原文地址:https://www.cnblogs.com/Gazikel/p/13415312.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!