2

我对这个 try, catch 和最后的 return 语句工作流程毫无疑问......

此功能用于检索员工休假信息以供主管查看。它工作得很好,但是如果找到了 if 语句的数据,它将被返回,否则 else 块将被返回。即使两者都得到回报,它也会最终声明。我不知道为什么?

这里的代码片段:

List<Leave> ILeaveData.GetLeaveForSupervisorView(int userID)
{
    SqlConnection con = new SqlConnection(_connectionString);
    SqlCommand cmd = new SqlCommand("Storeprocedurename", con);
    cmd.CommandType = CommandType.StoredProcedure;

    cmd.Parameters.Add(new SqlParameter("@Id", SqlDbType.Int));
    cmd.Parameters["@Id"].Value = userID;

    // Get employee leave information

    try
    {
        con.Open();
        DataSet ds = new DataSet();
        SqlDataAdapter adapter = new SqlDataAdapter();
        adapter.SelectCommand = cmd;
        adapter.Fill(ds);


        if (ds.Tables[0].Rows.Count > 0)
        {
            List<Leave> leave = new List<Leave>();
            for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
            {
                leave.Add(CreateLeaveForAdminViewFromDataRow(ds.Tables[0].Rows[i]));
            }
            return leave; // if data found then statement return here
        }
        else
        {
            return null; // otherwise return here
            // throw new Exception("Data Error");
         }
      }
      catch (SqlException err)
      {
          IErrorLog elog = new ErrorLog(_connectionString);
          elog.LogSystemError(err);
          throw new ApplicationException("Data Error", (Exception)err);
      }
      finally
      {
          if (con != null)
          {
              con.Close();
          }
       }
   }

关于萨尔瓦

4

3 回答 3

10

finally 语句总是被执行,即使没有异常发生。

http://msdn.microsoft.com/en-gb/library/zwc8s4fz(v=vs.110).aspx

通常,finally 块的语句在控制离开 try 语句时运行。控制的转移可能是正常执行、break、continue、goto 或 return语句的执行,或者异常从 try 语句中传播出来的结果。

于 2013-03-27T13:02:54.040 回答
3

finally块被设计为始终执行,无论是否抛出异常。

于 2013-03-27T13:03:03.237 回答
1

最终块将在所有情况下执行。

于 2013-03-27T13:04:51.860 回答