using Statement (C# Reference)
Defines a scope, outside of which an object or objects will be disposed.
但我在这里发布了一些用户发布的代码,我对此感到困惑:(请参阅我对代码的评论)
using (OleDBConnection connection = new OleDBConnection(connectiongString))
{
if (connection.State != ConnectionState.Open)
connection.Open();
string sql = "INSERT INTO Student (Id, Name) VALUES (@idParameter, @nameParameter)";
using (OleDBCommand command = connection.CreateCommand())
{
command.CommandText = sql;
command.CommandType = CommandType.Text;
OleDBParameter idParameter = command.CreateParameter();
idParameter.DbType = System.Int32;
idParameter.Direction = Parameterdirection.Input;
idParameter.Name = "@idParameter";
idParameter.Value = studentId;
OleDBParameter nameParameter = command.CreateParameter();
try
{
command.ExecuteNonQuery();
}
finally
{
// Is it still necessary to dispose these objects here?
command.Dispose();
connection.Dispose();
}
}
}
在上面的代码中,using
语句是否正确使用?
我很困惑,任何人都可以解释如何使用using
语句及其范围以及何时,何地以及为何使用它。谢谢..
答案 0 :(得分:11)
finally
块(因此在这种情况下为try
)是多余的,这是using
所做的,它在Dispose
对象上调用IDisposable
当using
块结束时(无论例外情况或缺少例外情况),它都会被初始化。
答案 1 :(得分:11)
using语句是手动放置try/finally
块的简写。
所以
using( x ){
...
}
与
相同try{
...
}finally{
if( x != null ){ x.Dispose(); }
}
他们将在编译时生成相同的IL。
如果x
未实现IDisposable
,编译器会给您一个错误。