使用 if 语句可以创建多少个分支?

发布于 2024-09-06 05:54:26 字数 31 浏览 4 评论 0原文

使用 if 语句可以创建多少个分支?是有限的吗?

how many branches can i create using if statement? is it limited?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

你曾走过我的故事 2024-09-13 05:54:26

IF 语句总是有两个分支:一个条件为 FALSE,另一个条件为 TRUE 。具有两个以上分支的分支结构通常称为 CASESWITCH。在 Pascal 中,它是 CASE

An IF statement always has exactly two branches: one where the condition is FALSE and one where the condition is TRUE. A branching construct that has more than two branches is usually called CASE or SWITCH. In Pascal, it's CASE.

倾城花音 2024-09-13 05:54:26

不,除了您的开发系统上的存储容量之外,它不受任何限制。

No, it is not limited except by the storage capacity on your development system.

玉环 2024-09-13 05:54:26

在进行大量逻辑分支之前,始终要考虑状态/策略模式。不确定您选择的语言,所以我无法真正帮助具体实现,但是您应该能够重构任何 switch case 或与挂钩到正确值的 Key 进行比较,并根据您的需求提取所需的对象/方法/变量钥匙。

Always think towards a State/Strategy pattern before making a ton of branches on logic. Not sure your language of choice so I cant really help with concrete implementation, but you should be able to refactor any switch case or if comparable into a Key hooked to the correct value, and pull out the object/method/variable needed based on your key.

欲拥i 2024-09-13 05:54:26

实际上没有限制,但是我们知道代码的数量总是会影响内存的容量,因此 RAM 限制了它。

There is no limit actually, but as we know the numbers of code always effect the capacity of Memory, so RAM wich limit it.

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