Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在一个简单的 jdbc 例子中,当我们通过一个 java 类加载一个驱动程序时,做法是使用 Class.forName("com.mysql.jdbc.Driver").newInstance(); 为什么我们不使用new com.mysql.jdbc.Driver();?
Class.forName("com.mysql.jdbc.Driver").newInstance();
new com.mysql.jdbc.Driver();
这段代码并不是真的要创建驱动程序的实例,而是确保驱动程序类由类加载器加载。现在不再需要了,请参阅: