摘要: JDBC连接数据库示例: package com.sjx.test; import java.sql.*; public class DemoDB { public static void main(String[] args) throws ClassNotFoundException, SQLE 阅读全文
posted @ 2021-10-29 13:58 novae 阅读(616) 评论(0) 推荐(0) 编辑
摘要: 如果我们希望传递给方法的参数不被修改而导致不必要的性能浪费。则可以在参数中加上final关键字 @Data class Person { private String name; private Integer age; } public void method(final Person perso 阅读全文
posted @ 2021-10-29 09:58 novae 阅读(479) 评论(0) 推荐(0) 编辑