gpt4 book ai didi

swift - 我应该总是用 Swift 中的三元替换 if...then...else 吗?

转载 作者:行者123 更新时间:2023-11-28 09:55:54 25 4
gpt4 key购买 nike

<分区>

如果我可以用三元替换 if...then...else,我应该这样做吗?还是归结为两者中哪一个最容易阅读和清晰?

例如改变:

If condition {
doSomething
} else {
doSomethingElse
}

condition ? doSomething : doSomethingElse

如何使用变量赋值:

If condition {
myProperty += 1
} else {
myProperty -= 1
}

到:

myProperty = condition ? myProperty + 1 : myProperty - 1

编辑:不是在寻找人们更喜欢的意见,而是在寻找是否有公认的专业实践来替换 if...then...else 如果可能的话。

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