gpt4 book ai didi

c# - 在这种情况下有没有比 GOTO 更好的方法?

转载 作者:太空狗 更新时间:2023-10-29 21:01:10 25 4
gpt4 key购买 nike

让我们以一点诚实开始。我不喜欢 goto,但我也不喜欢一遍又一遍地重复我的代码。无论如何,我遇到了这种情况。这很不寻常,但并非超出这个世界。我不禁想知道这是否适合 goto。有没有更好的办法?

public Task Process(CancellationTokenSource token)
{
await SpinUpServiceAsync();
foreach (var item in LongList())
{
if (token.IsCancellationRequested) goto cancel;
await LongTask1(item);

if (token.IsCancellationRequested) goto cancel;
await LongTask2(item);

if (token.IsCancellationRequested) goto cancel;
await LongTask3(item);

if (token.IsCancellationRequested) goto cancel;
await LongTask4(item);

if (token.IsCancellationRequested) goto cancel;
await LongTask5(item);

continue;
cancel:
{
Log($"Cancelled during {item}");
await SpinDownServiceAsync();
return;
}
}
}

这是我看到的下一个最佳选择:

public Task Process(CancellationTokenSource token)
{
await SpinUpServiceAsync();
foreach (var item in LongList())
{
if (token.IsCancellationRequested)
{
Log($"Cancelled during {item}");
await SpinDownServiceAsync();
return;
}
await LongTask1(item);

if (token.IsCancellationRequested)
{
Log($"Cancelled during {item}");
await SpinDownServiceAsync();
return;
}
await LongTask2(item);

if (token.IsCancellationRequested)
{
Log($"Cancelled during {item}");
await SpinDownServiceAsync();
return;
}
await LongTask3(item);

if (token.IsCancellationRequested)
{
Log($"Cancelled during {item}");
await SpinDownServiceAsync();
return;
}
await LongTask4(item);

if (token.IsCancellationRequested)
{
Log($"Cancelled during {item}");
await SpinDownServiceAsync();
return;
}
await LongTask5(item);
}
}

但是看看那些不必要的重复。

感谢您的考虑。

最佳答案

我没有 LongTask1-5 的确切类型,但我会这样做。

public Task Process(CancellationTokenSource token)
{
SOMETYPE[] tasks = new SOMETYPE[] {LongTask1, LongTask2, LongTask3, LongTask4, LongTask5};
await SpinUpServiceAsync();
foreach (var item in LongList())
{

foreach(var task in tasks){
if (token.IsCancellationRequested) {
Log($"Cancelled during {item}");
await SpinDownServiceAsync();

return;
}
await task(item);
}



}
}

这种方法将任务放在一个数组中。如果需求发生变化,需要执行更多任务,则数组定义会变长,但其余代码保持不变。好的代码使用循环来完成重复性任务,而不是像原始帖子中那样进行大量复制和粘贴。

关于c# - 在这种情况下有没有比 GOTO 更好的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39047926/

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