在java中我们如果用到了流或者建立了某个连接,都会在最后调用close方法,然后自己手动设置成null,或者不设置成null,垃圾处理器也会自动将其设置成null,而C#中却提供了两种释放资源的方法
使用using
在C#中使用using,当using执行完成的时候,会自动调用dispose方法,也就是释放资源
using(SqlConnection con = new SqlConnection(connData)){
//其他代码...
}
使用try_catch_finally
事实上,using就相当于try_finally,而这里只是对了个catch而已,使用这个的好处可想而知,例如在使用事物的时候,在catch中回滚,而使用using就不行了
SqlConnection conn = null;
MysqlTransation tran = null;
try{
conn = new SqlConnetion(connData);
con.Open();//打开连接
tran = conn.BeginConnsaction();
//...省略其他语句
tran.commit();
}catch{
tran.rollback();//事物回滚
}finally{
//..其他一些关闭操作
tran.dispose();
conn.close()
conn.dispose();
}