多行 if 语句有什么替代方案吗?
是否有任何替代模式可以将多行 if 语句减少为更具可读性或更美观的内容?像这样的东西:
if ($x == $y
&& $x == $z
&& $y == $v
&& $m == $t
&& $f == $x
&& $h == $g
&& $q == $w
&& $w == $p // etc
)
Are there any alternative patterns for reducing a multi-line if statement to something more readable or presentable? Something like:
if ($x == $y
&& $x == $z
&& $y == $v
&& $m == $t
&& $f == $x
&& $h == $g
&& $q == $w
&& $w == $p // etc
)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将这个特定实例压缩为:
但我不确定这是否是您想要的。您的单字母变量名称有点抽象。
如果您担心可读性,那么使用
and
而不是&&
有时会有所帮助。You could compact this particular instance with:
But I'm not sure if this is what you want. Your single letter variable names are a bit abstract.
If you are concerned about readability, then using
and
over&&
sometimes helps.