本文主要是介绍StringUtils的hasLength()函数用法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
点进源码
public static boolean hasLength(@Nullable String str) {return str != null && !str.isEmpty();}
我这里点进去的是spring中的StringUtils源码,可以看到这个函数的定义:
- 判断字符串非空
- 判断字符串不为null
下面我们来写一些例子
@Testpublic void testHasLength(){System.out.println(StringUtils.hasLength(""));System.out.println(StringUtils.hasLength(null));System.out.println(StringUtils.hasLength("1"));System.out.println(StringUtils.hasLength("asd"));}
输出:
false
false
true
true
这篇关于StringUtils的hasLength()函数用法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!