• 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);
            }
        }
    
    }
  • 相关阅读:
    yii2框架随笔9
    yii2源码学习笔记(五)
    yii2源码学习笔记(四)
    yii2源码学习笔记(三)
    yii2源码学习笔记(二)
    yii2源码学习笔记
    学习yii2.0框架阅读代码(一)
    (转)OAuth 2.0授权协议详解和流程
    (转)JavaScript 中对变量和函数声明的“提前(hoist)”
    JavaScript 中的算术运算
  • 原文地址:https://www.cnblogs.com/cocoxu1992/p/10594256.html
Copyright © 2020-2023  润新知