首页 > 代码库 > isNull、isEmpty、lenth = 0的区别

isNull、isEmpty、lenth = 0的区别

  1. isNull

    Null 值:变量卜存在,不包含有效数据,未定义,为分配内存

  2. isEmpt

    是一个判断函数,返回false或者true。

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

  3. “”

    已初始化,已分类内存,是空串。

    它的size = 0;

isNull、isEmpty、lenth = 0的区别