摘要: 1.常量与常量的拼接结果在常量池,原理是编译期优化 public void test1() { String s1 = "a" + "b" + "c";//等同于"abc" String s2 = "abc"; //"abc"-定是放在字符串常量池中,将此地址赋给s2 /* *最终.java编译成. 阅读全文
posted @ 2020-11-23 21:53 yvioo 阅读(983) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { Field[] fields=BaseSalary.class.getDeclaredFields(); for (int i = 0; i < fields.length; i++) { System.out.pri 阅读全文
posted @ 2020-11-23 17:35 yvioo 阅读(2885) 评论(0) 推荐(0) 编辑
摘要: private static Pattern humpPattern = Pattern.compile("[A-Z]"); /** * 驼峰转下划线 * @param str * @return */ public static String humpToLine(String str) { Ma 阅读全文
posted @ 2020-11-23 17:33 yvioo 阅读(2760) 评论(2) 推荐(0) 编辑