gpt4 book ai didi

c# - 使用未分配的局部变量 `total`

转载 作者:行者123 更新时间:2023-11-30 19:46:48 27 4
gpt4 key购买 nike

我想要所有间隔的总和,但我写这段代码时出现错误:使用未分配的局部变量 total ?

enter TimeSpan total;
foreach (var grp in query)
{
TimeSpan interval = TimeSpan.FromMinutes(grp.Minuut);
TimeSpan intervalH = TimeSpan.FromHours(grp.Sum);

interval = interval + intervalH;
total += interval;
string timeInterval = interval.ToString();
dataGridView2.Rows.Add(i++, grp.Id, grp.Sum, grp.Minuut,timeInterval);
}

最佳答案

开始于:

TimeSpan total = TimeSpan.Zero;

增加一个没有值的变量是没有意义的。所以这很自然是编译器错误。

虽然字段 被初始化为 0,但局部变量必须在首次读取之前分配给它们。在您的程序中,total += interval; 读取 total 以增加它。因此,在循环的第一次迭代中,它不会被赋值。

关于c# - 使用未分配的局部变量 `total`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7875027/

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