码迷,mamicode.com
首页 > 其他好文 > 详细

使用TextUtils.isEmpty简单化代码

时间:2016-10-08 18:54:28      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

如果让你判断一个文本框是否为空(null)或者没有任何值(length=0),你会怎么怎样去写代码,很多初学者可能会这样写:

if(text==null || text.length==0)

{........}

其实没有必要这么麻烦,在android的官方API中有更方便的解决方法:Returns true if the string is null or 0-length,可以使用这个方法-TextUtils.isEmpty()

可以这样写:

if(!TextUtils.isEmpty(text))

{.....}

使用TextUtils.isEmpty简单化代码

标签:

原文地址:http://www.cnblogs.com/peterpan-/p/5939628.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!