如何使其到达已添加值的位置然后忽略 if 语句的其余部分?
如何使其到达已添加值的位置然后忽略 if 语句的其余部分?我正在运行多个 if 语句,并且需要编码来确认值何时已被使用。
How can I make it to where if the value has been added then ignore the rest of the if statement? I am running multiple if statements and need the coding to acknowledge when a value has already been used.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您通常会使用布尔标志来执行此操作
在代码中检查标志以测试提前退出、执行不同的例程等(例如离开 IF 逻辑)
You would normally use a Boolean Flag to do this
Check the flag during your code to test for early exit, executing different routines etc (such as leaving your IF logic)