search
HomeJavajavaTutorialHow to implement empty judgment in Java

    1. Foreword

    In actual projects, we will have many places where null verification is required. If null verification is not performed, NullPointerException may occur. .

    Let’s first look at some null judgment methods in actual projects

    How to implement empty judgment in Java

    if (ObjectUtil.isNotNull(vo.getSubmitterId())) {
        userIds.add(vo.getSubmitterId());
    }
    if (StringUtils.isNotBlank(vo.getBudgetPM())) {
        userIds.add(Long.valueOf(vo.getBudgetPM()));
    }
    if (CollUtil.isNotEmpty(vo.getOriginatorList())) {
        userIds.addAl1(vo.getOriginatorList().stream();
    }

    Usually we judge whether an object is Null, you can use Objects in java.util .nonNull(obj), ObjectUtil in hutool or direct null != obj

    2. Null judgment of List

    Special items like List may not only judge non-null in the project empty. For List, it is not equal to null and List.size() is not equal to 0. There are two different things. Interns in the company often confuse these two. If list is not equal to null, it means that it has been initialized and there is a piece of heap memory that belongs to it. The site, and a size of 0 means that nothing has been put into it. For example, if it is not equal to null, it means that I now have a bottle. If the size is greater than 0, it means that I have filled the bottle with water.

    In actual projects, we also found that list.isEmpty() is used directly to judge. Let’s take a look at the source code:

    public boolean isEmpty() {
        return size == 0;
    }

    It is equivalent to judging whether there is water in the bottle (provided that the bottle already exists, If the bottle does not exist, a NullPointerException will be thrown).

    So usually list != null && list.size > 0 is used to judge, or directly use isEmpty of the CollUtil tool in HuTool. There are also Set, Map, etc.

    3. String null judgment

    The concepts of bottles and water are still used here. When String is null, operations such as equals(String) or length() are called. Throws java.lang.NullPointerException.

    How to implement empty judgment in Java

    There are several ways to detect the empty string:

    1. One of the methods used by most people, intuitive and convenient, but inefficient :

    if(a == null || a.equals(""));

    2. Compare string lengths, efficient:

    if(a == null || a.length() == 0);

    3. Java SE 6.0 has just started to be provided, and the efficiency is almost the same as method two:

    if(a == null || a.isEmpty());

    Of course, you can also use the org.apache.commons.lang.StringUtils tool.

    StringUtils.isNotBlank(a);

    * StringUtils.isNotBlank(null) = false

    * StringUtils.isNotBlank("") = false

    * StringUtils.isNotBlank(" ") = false

    * StringUtils.isNotBlank("bob") = true

    * StringUtils.isNotBlank(" bob ") = true

    There is also an isNotEmpty() method in this tool class. The difference between the two can be clearly seen from the comments

    StringUtils.isNotEmpty(a);

    * StringUtils.isNotEmpty(null) = false

    * StringUtils.isNotEmpty("") = false

    * StringUtils.isNotEmpty(" ") = true

    * StringUtils.isNotEmpty("bob") = true

    * StringUtils.isNotEmpty(" bob ") = true

    4. The appearance of Optional

    Optional is used Prevent NullpointException. Common methods are:

    • .empty(): Create an empty Optional instance

    • .of(T t): Create an Optional Instance, an exception will be reported if it is null

    • .ofNullable(T t): If t is not null, create an Optional instance, otherwise create an empty instance

    • isPresent(): Determine whether there is a value in the container

    • ifPresent(Consume lambda): If the container is not empty, execute the Lambda expression in the brackets

    • orElse(T t): Get the element in the container. If the container is empty, return the default value in the brackets

    • orElseGet(Supplier s): If the calling object contains a value , return the value, otherwise return the value obtained by s

    • orElseThrow(): If it is empty, throw the defined exception, if not, return the current object

    • map(Function f): If there is a value, process it and return the processed Optional, otherwise return Optional.empty()

    • flatMap(Function mapper ): Similar to map, the return value must be Optional

    • T get(): Get the element in the container, if the container is empty, a NoSuchElement exception will be thrown

    Let’s look at a common example first:

    There is a Boolean type attribute in the baseInfo class. If it is empty, it returns false. If it is not empty, it takes its value, which requires four lines.

    boolean blind = false;
    if (null != baseInfo.getBlind()){
        blind = baseInfo.getBlind();
    }

    When using Optional, it can be done in one line, very elegant.

    boolean blind = Optional.ofNullable(baseInfo.getBlind()).orElse( other: false);

    4.1 Creation of Optional objects

    public final class Optional<T> {
        private static final Optional<?> EMPTY = new Optional<>();
        private final T value;
        //可以看到两个构造方格都是private 私有的
        //说明 没办法在外面new出来Optional对象
        private Optional() {
            this.value = null;
        }
        private Optional(T value) {
            this.value = Objects.requireNonNull(value);
        }
        //这个静态方法大致 是创建出一个包装值为空的一个对象因为没有任何参数赋值
        public static<T> Optional<T> empty() {
            @SuppressWarnings("unchecked")
            Optional<T> t = (Optional<T>) EMPTY;
            return t;
        }
        //这个静态方法大致 是创建出一个包装值非空的一个对象 因为做了赋值
        public static <T> Optional<T> of(T value) {
            return new Optional<>(value);
        }
        //这个静态方法大致是 如果参数value为空,则创建空对象,如果不为空,则创建有参对象
        public static <T> Optional<T> ofNullable(T value) {
            return value == null ? empty() : of(value);
        }
    }

    4.2 Usage scenarios

    Scenario 1: Query an object in the service layer, and after returning, determine whether it is empty and process it

    Task task = taskService.createTaskQuery().taskId(taskId).singleResult();
    Optional.ofNullable(task).orElseThrow(() -> new ProcessException(ErrorCodeEnum,SYSIEM ERROR));

    Scenario 2: Using Optional and functional programming, done in one line

    Task task = taskService.createTaskQuery().taskId(taskId).singleResult();
    Map<String,String> map = new HashMap<>( initialCapacity: 8);
    Optional.ofNullable(task).ifPresent(d -> map.put("taskId",d.getTaskDefinitionKey()));

    The above is the detailed content of How to implement empty judgment in Java. For more information, please follow other related articles on the PHP Chinese website!

    Statement
    This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
    带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

    本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

    Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

    本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

    完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

    本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

    一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

    本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

    详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

    本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

    Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

    本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

    java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

    封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

    归纳整理JAVA装饰器模式(实例详解)归纳整理JAVA装饰器模式(实例详解)May 05, 2022 pm 06:48 PM

    本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    Repo: How To Revive Teammates
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.

    Dreamweaver Mac version

    Dreamweaver Mac version

    Visual web development tools

    ZendStudio 13.5.1 Mac

    ZendStudio 13.5.1 Mac

    Powerful PHP integrated development environment

    Atom editor mac version download

    Atom editor mac version download

    The most popular open source editor

    SublimeText3 Linux new version

    SublimeText3 Linux new version

    SublimeText3 Linux latest version