草庐IT

34、Java 中有了基本数据类型,为什么还需要有包装类型?包装类型是啥?

JavaLearnerZGQ 2023-04-11 原文

文章目录

一、引入(基本数据类型弊端)

📜 对比引用类型,基本类型(byte、short、int、float、boolean …)有一些缺陷

✒️ 无法表示不存在的值(null值)

✏️ 假如你开了一家🏨酒店,你想统计一周的盈利💰情况(如:星期一赚💯万、星期二亏10万 …),你会怎么做 ?

✏️ 假如用基本数据类型,您可能会如下图哪样干:

✏️ 上图:用一个可存放7个int类型元素的数组存放盈利额。100 是盈利100万、-10 是亏损10万元。这样可以表达出酒店一周的亏损值,但如何表达星期二没有开门呢
✏️ 用数字【0】来表达: 有歧义,数字【0】也可能表达的含义是【开门了,但一个客人都没有,一点钱都没赚,也一点钱都没有亏】
✏️ 此时基本数据类型的弊端就显现了,无法表示不存在的值(null 值)


✒️基本类型的操作不够面向对象(比如用基本类型调方法)

二、包装类

📕 Java platform provides wrapper classes for each of the primitive data types. These classes “wrap” the primitive in an object.

✏️ Java 为每一个基本数据类型提供了包装类型。包装类型是对基本数据类型的封装(把基本数据类型包装为引用对象【】)


(1) 模拟包装类的实现

把基本数据类型 int 包装为引用类型:

/**
 * @author 庆医
 * @describe 把基本类型 int 包装为引用类型
 */
public class Integer_ {
    // primitive 原始的(基本类型)
    private int primitive;

    public Integer_(int primitive) {
        this.primitive = primitive;
    }

    /**
     * 返回基本类型的值
     */
    public int getPrimitive() {
        return primitive;
    }
}

使用自定义包装类型表达一周的盈利情况:

public class TestDemo {
    public static void main(String[] args) {
        /* 无法表达不存在的值 */
        // int[] weekMoney = {100, -10, 5, 123, -3, 12, 22};

        /* 使用包装类型 */
        Integer_[] weekMoney = {
                new Integer_(100),
                null, // 星期二没有开门
                new Integer_(5),
                new Integer_(123),
                new Integer_(-3),
                new Integer_(12),
                new Integer_(22),
        };

        /* 打印一周的亏损情况和开门情况 */
        for (int i = 0; i < weekMoney.length; i++) {
            if (weekMoney[i] == null) {
                System.out.println("周" + (i + 1) + ": 没有开门");
                continue;
            }

            int primitive = weekMoney[i].getPrimitive();
            System.out.println("周" + (i + 1) + ": " + primitive);
        }
    }
}

(2) 包装类(Wrapper Class)

✏️ Java 的java.lang包中内置了基本类型的包装类
✏️ Java 的数字类型 (byte、short、int、long、float、double) 的包装类最终都继承自抽象类java.lang.Number
✏️ char 的包装类是 Character
✏️ boolean 的包装类是 Boolean


(3) 自动装箱、自动拆箱

① 自动装箱

✏️ 自动装箱:Java 编译器会自动调用包装类型的 valueOf 方法,把基本类型转换为相对应的包装类型
自动装箱:

public class TestDemo {
    public static void main(String[] args) {
        // Integer i = Integer.valueOf(11);
        Integer i = 11;

        // add(Integer.valueOf(22));
        add(22);
    }

    private static void add(Integer n) {

    }
}

⭐️ 整数类型(Byte、Short、Integer、Long) 的包装类的valueOf方法的底层会有缓存的操作(缓存常用的数字的包装类型)


② 自动拆箱

✏️ 自动拆箱:Java 编译器会自动调用包装类型的 xxxValue 方法,把包装类型转换为相对应的基本类型

public class TestDemo {
    public static void main(String[] args) {
        Integer i1 = 88;
        // class java.lang.Integer
        System.out.println(i1.getClass());

        // int i2 = i1.intValue();
        int i2 = i1;

        // System.out.println(i1.intValue() == 88);
        System.out.println(i1 == 88); // output: true

        // 自动装箱
        Integer[] ints = {11, 22, 33, 44};
        int result = 0;
        for (Integer i : ints) {
            // if(i.intValue() % 2 == 0)
            if (i % 2 == 0) {
                // result += i.intValue();
                result += i;
            }
        }
        System.out.println(result);
    }
}

public class TestDemo {
    public static void main(String[] args) {
        // 自动装箱
        // Object n = Integer.valueOf(12);
        Object n = 12;
    }
}

三、整数类型包装类细节 ☆

🖊 包装类的判等不要使用 ==!=,而应该用 equals 方法

public class TestDemo {
    public static void main(String[] args) {
        Integer n1 = 88;
        Integer n2 = 88;
        Integer n3 = 888;
        Integer n4 = 888;

        System.out.println(n1 == n2); // true
        // n3 和 n4 比较的是地址值(n3 和 n4 不是同一个对象)
        System.out.println(n3 == n4); // false

        System.out.println(n1.equals(n2)); // true
        System.out.println(n3.equals(n4)); // true
    }
}

⭐️ 【整数类型】的包装类的 valueOf 方法不是直接创建一个包装类对象
⭐️ 会有缓存的操作(上图是 Integer 类的 valueOf 方法的底层)


public class TestDemo {
    public static void main(String[] args) {
        Integer i1 = 88;
        Integer i2 = Integer.valueOf(88);
        Integer i3 = new Integer(88);

        // true
        System.out.println(i1 == i2);
        // false
        System.out.println(i1 == i3);
    }
}

结束,如有错误,请不吝赐教!

有关34、Java 中有了基本数据类型,为什么还需要有包装类型?包装类型是啥?的更多相关文章

  1. ruby - 为什么我可以在 Ruby 中使用 Object#send 访问私有(private)/ protected 方法? - 2

    类classAprivatedeffooputs:fooendpublicdefbarputs:barendprivatedefzimputs:zimendprotecteddefdibputs:dibendendA的实例a=A.new测试a.foorescueputs:faila.barrescueputs:faila.zimrescueputs:faila.dibrescueputs:faila.gazrescueputs:fail测试输出failbarfailfailfail.发送测试[:foo,:bar,:zim,:dib,:gaz].each{|m|a.send(m)resc

  2. ruby-on-rails - rails : "missing partial" when calling 'render' in RSpec test - 2

    我正在尝试测试是否存在表单。我是Rails新手。我的new.html.erb_spec.rb文件的内容是:require'spec_helper'describe"messages/new.html.erb"doit"shouldrendertheform"dorender'/messages/new.html.erb'reponse.shouldhave_form_putting_to(@message)with_submit_buttonendendView本身,new.html.erb,有代码:当我运行rspec时,它失败了:1)messages/new.html.erbshou

  3. ruby-on-rails - 由于 "wkhtmltopdf",PDFKIT 显然无法正常工作 - 2

    我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-

  4. ruby-on-rails - Rails - 子类化模型的设计模式是什么? - 2

    我有一个模型:classItem项目有一个属性“商店”基于存储的值,我希望Item对象对特定方法具有不同的行为。Rails中是否有针对此的通用设计模式?如果方法中没有大的if-else语句,这是如何干净利落地完成的? 最佳答案 通常通过Single-TableInheritance. 关于ruby-on-rails-Rails-子类化模型的设计模式是什么?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.co

  5. ruby - 什么是填充的 Base64 编码字符串以及如何在 ruby​​ 中生成它们? - 2

    我正在使用的第三方API的文档状态:"[O]urAPIonlyacceptspaddedBase64encodedstrings."什么是“填充的Base64编码字符串”以及如何在Ruby中生成它们。下面的代码是我第一次尝试创建转换为Base64的JSON格式数据。xa=Base64.encode64(a.to_json) 最佳答案 他们说的padding其实就是Base64本身的一部分。它是末尾的“=”和“==”。Base64将3个字节的数据包编码为4个编码字符。所以如果你的输入数据有长度n和n%3=1=>"=="末尾用于填充n%

  6. ruby - 解析 RDFa、微数据等的最佳方式是什么,使用统一的模式/词汇(例如 schema.org)存储和显示信息 - 2

    我主要使用Ruby来执行此操作,但到目前为止我的攻击计划如下:使用gemsrdf、rdf-rdfa和rdf-microdata或mida来解析给定任何URI的数据。我认为最好映射到像schema.org这样的统一模式,例如使用这个yaml文件,它试图描述数据词汇表和opengraph到schema.org之间的转换:#SchemaXtoschema.orgconversion#data-vocabularyDV:name:namestreet-address:streetAddressregion:addressRegionlocality:addressLocalityphoto:i

  7. ruby - 为什么 4.1%2 使用 Ruby 返回 0.0999999999999996?但是 4.2%2==0.2 - 2

    为什么4.1%2返回0.0999999999999996?但是4.2%2==0.2。 最佳答案 参见此处:WhatEveryProgrammerShouldKnowAboutFloating-PointArithmetic实数是无限的。计算机使用的位数有限(今天是32位、64位)。因此计算机进行的浮点运算不能代表所有的实数。0.1是这些数字之一。请注意,这不是与Ruby相关的问题,而是与所有编程语言相关的问题,因为它来自计算机表示实数的方式。 关于ruby-为什么4.1%2使用Ruby返

  8. ruby - 检查 "command"的输出应该包含 NilClass 的意外崩溃 - 2

    为了将Cucumber用于命令行脚本,我按照提供的说明安装了arubagem。它在我的Gemfile中,我可以验证是否安装了正确的版本并且我已经包含了require'aruba/cucumber'在'features/env.rb'中为了确保它能正常工作,我写了以下场景:@announceScenario:Testingcucumber/arubaGivenablankslateThentheoutputfrom"ls-la"shouldcontain"drw"假设事情应该失败。它确实失败了,但失败的原因是错误的:@announceScenario:Testingcucumber/ar

  9. ruby - ruby 中的 TOPLEVEL_BINDING 是什么? - 2

    它不等于主线程的binding,这个toplevel作用域是什么?此作用域与主线程中的binding有何不同?>ruby-e'putsTOPLEVEL_BINDING===binding'false 最佳答案 事实是,TOPLEVEL_BINDING始终引用Binding的预定义全局实例,而Kernel#binding创建的新实例>Binding每次封装当前执行上下文。在顶层,它们都包含相同的绑定(bind),但它们不是同一个对象,您无法使用==或===测试它们的绑定(bind)相等性。putsTOPLEVEL_BINDINGput

  10. ruby - Infinity 和 NaN 的类型是什么? - 2

    我可以得到Infinity和NaNn=9.0/0#=>Infinityn.class#=>Floatm=0/0.0#=>NaNm.class#=>Float但是当我想直接访问Infinity或NaN时:Infinity#=>uninitializedconstantInfinity(NameError)NaN#=>uninitializedconstantNaN(NameError)什么是Infinity和NaN?它们是对象、关键字还是其他东西? 最佳答案 您看到打印为Infinity和NaN的只是Float类的两个特殊实例的字符串

随机推荐