提问人:Aion 提问时间:10/20/2021 更新时间:10/20/2021 访问量:186
优化 IF 语句中的布尔条件
Optimize boolean condition in IF statements
问:
我有以下条件:
if (a && (b || c)) {
await t1();
}
if(b) {
await t2();
}
考虑到 t2 应该在 t1 之后完成,有没有办法优化这些条件?
答:
1赞
500 - Internal Server Error
10/20/2021
#1
如果可能是,以下内容可能会快一点,但我可能会保持原样。b
true
if (b)
{
if (a)
await t1();
await t2();
}
else
{
if (a && c)
await t1();
}
评论