首页 > 其他 > 详细

使用TextUtils.isEmpty简单化代码

时间:2014-08-05 03:04:38      阅读:452      评论:0      收藏:0      [点我收藏+]

我们经常看到这样的代码:

  public void setText(String text , TextView view , int string){
    	if(text == null || text.length() == 0){
    		// do something
    	}
  }


其实在android里 if(text ==null || text.length()==0)是有封装的。
在android.text.TextUtils里

public static boolean isEmpty(CharSequence str) {
        if (str == null || str.length() == 0)
            return true;
        else
            return false;
    }



所以我们可以使用

TextUtils.isEmpty(text)


代替

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



CharSequence 是一个接口,String 实现了这个接口

使用TextUtils.isEmpty简单化代码,布布扣,bubuko.com

使用TextUtils.isEmpty简单化代码

原文:http://www.cnblogs.com/Hellcxs/p/3891388.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!