默认下,C#只有两种类型: 1. 可空类型:(是指可为null) 大部分的对象, 如: Dog dog = null; 2. 不可空类型: 基本值类型,布尔类型等,如: int a = 0 ;//正确 int a = null;//错误 3. 不可空转为可空类型的方法: int? a = null; //在不可空类型后面加上问号"?"就可以转换为可空类型了 小提示: 在数据库中int类型也是可以为空的,微软为了在概念上保持一致才推出了此举, 当然它的意义并不止如此,继续深入探究吧.…
/** TextUtils.isEmpty() 方法的实现 * Returns true if the string is null or 0-length. * @param str the string to be examined * @return true if str is null or zero length */ public static boolean isEmpty(@Nullable CharSequence str) { if (str == null || str.…