08 2019 档案

摘要:不能被继承 原因: 因为String类有final修饰符,而final修饰的类是不能被继承的。 阅读全文
posted @ 2019-08-27 15:23 wyuioahxvm 阅读(451) 评论(0) 推荐(0)
摘要:java中8种基本数据类型:byte , short , int , long , float , double , char , boolean 代码测试: 转载自 https://blog.csdn.net/zhangyubishoulin/article/details/82423177 阅读全文
posted @ 2019-08-27 15:05 wyuioahxvm 阅读(960) 评论(0) 推荐(0)
摘要:org.apache.commons.lang.StringUtils#join(java.lang.Object[], java.lang.String) 阅读全文
posted @ 2019-08-26 17:48 wyuioahxvm 阅读(184) 评论(0) 推荐(0)
摘要:select * from temp_supp_goods where goods_name regexp '[0-9]'; select * from temp_supp_goods where goods_name regexp '元' 阅读全文
posted @ 2019-08-15 11:17 wyuioahxvm 阅读(545) 评论(0) 推荐(0)
摘要:已知table表的行数是6; 1.select count(*) from table; 返回的是table表的行数 2.select count(1) from table; 返回的是table表的行数 3.select count(column) from table; count其中的一列,返 阅读全文
posted @ 2019-08-15 10:43 wyuioahxvm 阅读(140) 评论(0) 推荐(0)
摘要:已知table表中共有6条记录 1.select * from table; 返回表中的详细记录; 2.select 1 from table; 结果,得出一个行数和table表行数一样的临时列,每行的列值是1,行数和table表行数一致 3.select 2 from table; 结果,得出一个 阅读全文
posted @ 2019-08-08 10:37 wyuioahxvm 阅读(441) 评论(0) 推荐(0)