2018年8月29日
摘要: Boolean boolean1 = false; String str3 = (String)boolean1;//这行代码会报错,编译不过 String str4 = boolean1.toString();//正常 String str5 = String.valueOf(boolean1); 阅读全文
posted @ 2018-08-29 15:10 大橙子最美丽 阅读(1233) 评论(0) 推荐(0) 编辑
摘要: String转Boolean String a = "true";Boolean.getBoolean(a); Boolean转String boolean b = true; String s = String.valueOf(b); 大家觉得有用可以支持一下哦 阅读全文
posted @ 2018-08-29 14:58 大橙子最美丽 阅读(44634) 评论(8) 推荐(2) 编辑
摘要: 判断有没有参数 大家觉得不错的话可以支持一下 阅读全文
posted @ 2018-08-29 14:48 大橙子最美丽 阅读(177) 评论(0) 推荐(0) 编辑