gpt4 book ai didi

c# - 混淆使用 "using"语句 C#

转载 作者:可可西里 更新时间:2023-11-01 08:19:26 28 4
gpt4 key购买 nike

根据 MSDN Library

using Statement (C# Reference)<br/>
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语句及其作用域以及何时、何地以及为何使用它。谢谢..

最佳答案

using 语句是手动放置 try/finally block 的简写。

所以

using( x ){
...
}

相同
try{
...
}finally{
if( x != null ){ x.Dispose(); }
}

并且它们在编译时将生成相同的 IL。

如果 x 没有实现 IDisposable,编译器会给你一个错误。

关于c# - 混淆使用 "using"语句 C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4021787/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com