多行 if 语句有什么替代方案吗?

发布于 2024-10-21 15:11:16 字数 252 浏览 0 评论 0原文

是否有任何替代模式可以将多行 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

软的没边 2024-10-28 15:11:16

您可以将这个特定实例压缩为:

if (array($x, $x, $y, $m, $f, $h, $q, $w)
 == array($y, $z, $v, $t, $x, $g, $w, $p))

但我不确定这是否是您想要的。您的单字母变量名称有点抽象。

如果您担心可读性,那么使用 and 而不是 && 有时会有所帮助。

You could compact this particular instance with:

if (array($x, $x, $y, $m, $f, $h, $q, $w)
 == array($y, $z, $v, $t, $x, $g, $w, $p))

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文