zoukankan      html  css  js  c++  java
  • Java基础之断言

      断言是在Java 1.4中引入的。它能让你验证假设。如果断言失败(即返回false),就会抛出AssertionError(如果启用断言)。

    什么时候使用断言?

      断言不应该用于验证输入数据到一个public方法或命令行参数。IllegalArgumentException会是一个更好的选择。在public方法中,只用断言来检查它们根本不应该发生的情况。

    import java.util.Collection;
    import java.util.Map;
    
    import org.apache.commons.collections.CollectionUtils;
    import org.apache.commons.collections.MapUtils;
    import org.apache.commons.lang.StringUtils;
    
    /**
     * 断言扩展
     * 
     * @ClassName: Assert
     * @author coco.xu*/
    @SuppressWarnings("rawtypes")
    public class Assert {
    
        public static void hasText(Long text, String message) {
            if (text == null || text == 0)
                throw new IllegalArgumentException(message);
            else
                return;
        }
    
        public static void hasText(Integer text, String message) {
            if (text == null || text == 0)
                throw new IllegalArgumentException(message);
            else
                return;
        }
    
        public static void hasText(String text, String message) {
            org.springframework.util.Assert.hasText(text, message);
        }
    
        public static void notNull(Object obj, String message) {
            if (obj == null) {
                throw new IllegalArgumentException(message);
            }
        }
        
        public static void notEmpty(Collection obj, String message) {
            if (CollectionUtils.isEmpty(obj)) {
                throw new IllegalArgumentException(message);
            }
        }
        
        public static void notEmpty(Map obj, String message) {
            if (MapUtils.isEmpty(obj)) {
                throw new IllegalArgumentException(message);
            }
        }
    
        public static void hasText(String text) {
            org.springframework.util.Assert
                    .hasText(
                            text,
                            "[Assertion failed] - this String argument must have text; it must not be null, empty, or blank");
        }
        
        public static void notEmpty(String text,String message)
        {
            if(StringUtils.isEmpty(text))
            {
                throw new IllegalArgumentException(message);
            }
        }
    
    }
  • 相关阅读:
    深度图像的获取原理
    第二章 排序 || 第19节 最短子数组练习题
    第二章 排序 || 第18节 有序矩阵查找练习题
    tensorflow 之tf.nn.depthwise_conv2d and separable_conv2d实现及原理
    tensorflow 之常见模块conv,bn...实现
    机器学习中的训练数据不平衡问题
    一些智力题
    Pytoch 抽取中间层特征方法
    娱乐一下
    java访问ad域
  • 原文地址:https://www.cnblogs.com/cocoxu1992/p/10594256.html
Copyright © 2011-2022 走看看