Delphi - 相当于 C# 的三元运算符?
可能的重复:
是否有,或者Delphi 中是否存在条件运算符?
我知道 Delphi 没有像 C# 中那样的三元运算符。 ie ?:
那么如何最好地表示这个函数调用呢?最干净的方法是什么?
如果有任何代码可以用来代替编写单独的函数,那就太好了?如果不是,那么最有效和/或最干净的代码表示是什么?
Possible Duplicate:
Is there, or is there ever going to be, a conditional operator in Delphi?
I understand Delphi doesnt have the ternary operator as in C#.
i.e. ?:
So how best to represent this function call? Whats the cleanest method out there?
Would be very nice if there is any code out there that can be used INSTEAD of writing a separate function? If not, whats the most efficient and/or cleanest code representation of it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当然,您可以
在返回值为数字(
使用 Math
)或字符串(使用 StrUtils
)的情况下使用。但请注意,这将在所有情况下计算两个参数 - 没有惰性计算,因此它不如 C# 中的?:
运算符高效,后者仅计算正确的操作数。所以你不能做
最好的事情就是坚持平凡
Of course you can use
where the return values are numeric (
uses Math
) or string (uses StrUtils
). But notice that this will evaluate both arguments in all cases -- there is no lazy evaluation, so it is not as efficient as the?:
operator in C#, where only the right operand is evaluated.So you cannot do
The best thing is to stick with an ordinary
最接近三元运算符的是:
据我所知,Delphi 中没有三元运算符。
The closest you can get to a ternary operator is:
As far as I remember, there is no ternary operator in Delphi.
试试 Jedi 中的 Iff:
Try the Iff from Jedi: