值未在while循环中更新

时间:2018-08-13 21:17:57

标签: c# while-loop

我在Visual Studios 2017中创建了一个wpf应用程序。我目前正在尝试在日期时间的有序列表中查找最近的日期时间。看来我的“最近”值在循环中没有得到更新,但是一切对我来说都是正确的。

这是我的代码

while (r < dataTable.Rows.Count)    //get nearest value to the current target
{
    long nearest = long.MaxValue;
    long dtDiff = 0;
    while(nearest > dtDiff)
    {
      DateTime dtCurr = Convert.ToDateTime(dataTable.Rows[r][dtCol].ToString());
      dtDiff = Math.Abs(dtTarget.Ticks - dtCurr.Ticks);
      if(dtDiff < nearest)
      {
          Debug.WriteLine("Smaller value found r:" + r);
          Debug.WriteLine("diff:" + dtDiff.ToString() + " nearest:" + nearest);
          nearest = dtDiff;
          r++;
       }
       else
       {
          Debug.WriteLine("nearest value found " + r);
          long v = long.Parse(dataTable.Rows[r][dtCol + 1].ToString());
          values.Add(new NormValue { datetime = dt, value = v});
          dtTarget.AddSeconds(inc);
          break;
        }
    }
}

if(dtDiff <最接近)语句中,应该更新 nearest 变量,但是根据我的调试打印语句,它永远不会改变。我不确定自己在做什么错。

编辑: 这是数据表的示例:

16年5月1日00:00:10

16年5月1日00:00:40

16年5月1日00:01:10

16年5月1日00:01:40

16年5月1日00:02:10

16年5月1日00:02:40

16年5月1日00:03:10

我的目标日期时间值会逐步增加,就像

16年5月1日00:00:10

16年5月1日00:00:20

16年5月1日00:00:30

16年5月1日00:00:40

因此可以使用相同的值或完全跳过值

4 个答案:

答案 0 :(得分:2)

第二个循环(while(nearest > dtDiff))需要最接近的值大于dtDiff,但是在if语句(if(dtDiff < nearest))中,程序设置为使用dtDiff值最接近的值。将while(nearest > dtDiff)设置为while(nearest >= dtDiff)即可解决问题。

答案 1 :(得分:1)

由于最近的循环,“最近”具有相同的值。每次程序进入外循环时,“最近”都会获得新值。尝试在循环外声明“最近”。

long nearest = long.MaxValue;
while (r < dataTable.Rows.Count)
{
    // Your code
}

答案 2 :(得分:0)

我认为不需要第二个循环。您可以改用以下代码:

DateTime dtCurr = Convert.ToDateTime(dataTable.Rows[r][dtCol].ToString());
long nearest = dtCurr.Ticks - (dtCurr.Ticks % (System.TimeSpan.TicksPerSecond * inc));
//nearest += (System.TimeSpan.TicksPerSecond * inc);

它将计算小于dtCurr.Ticks的最近数字,步长等于inc秒。取消注释最后一行将给出下一个数字。

答案 3 :(得分:0)

循环固定范围索引的标准方法是使用for循环。值// Given trend data has a single measurement referencing a single site. var gaugeData = db.trend_data .Where(x => x.trend_data_time >= sdate && x.trend_data_time <= edate && x.measurement.site.site_name == insite)) .Select(x => new { x.measurement.site.site_name, x.trend_data_time, x.trend_data_avg }).ToList() .Select( x=> new GaugeData { SiteID = site_name, Data_Time = trend_data_time, Trend_Data = Convert.ToSingle(trend_data_avg) }).ToList(); 必须在循环之前 进行初始化,否则它将始终被重置。

我不了解内部while循环的目的。一个循环就可以完成这项工作。另外,我不明白为什么nearest在此过程中增加。

另一个问题是您的dtTarget在分配Debug.WriteLine值之前就出现了,因此您总是看到前一个。

nearest