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

remotepath != null 与 !TextUtils.isEmpty(remotepath) 的差别

时间:2015-12-29 21:10:45      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:

remotepath != null   与 !TextUtils.isEmpty(remotepath) 的差别


 !TextUtils.isEmpty(remotepath)    与   remotepath != null &&remotepath.length > 0   一样


或者初始化 remotepath = null。这时仅仅推断 remotepath != null 也能够,假设初始化 remotepath = “” ,这时必须 用!TextUtils.isEmpty(remotepath) 推断


能够单独写个java main 方法检验


public class Test {

private static String str = "";
/**
* @param args
*/
public static void main(String[] args) {
setText();
}
public static void setText(){  
       if(str != null)  
           System.err.println("daying");
   } 
}

remotepath != null 与 !TextUtils.isEmpty(remotepath) 的差别

标签:

原文地址:http://www.cnblogs.com/hrhguanli/p/5086828.html

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