对于sql连接,我们通常像下面这样
Class.forName("com.mysql.jdbc.Driver");
con=DriverManager.getConnection("jdbc:mysql://localhost:3306/test","username","password");
由于这会引发异常,所以我们通常在 try 块中编写。但是我的问题是,如果我编写了不会在 try 块中引发异常的不必要的代码,那么性能会受到影响吗?
try
{
//some 100 lines codes that does not throw exception
Class.forName("com.mysql.jdbc.Driver");
con=DriverManager.getConnection("jdbc:mysql://localhost:3306/test","username","password");
}
catch(Exception e)
{
}