后奏中的三元?
我可以像在前奏中那样在后奏中做三元吗?换句话说,它是否会根据前奏中评估的内容触发不同的调用?
Can I do ternary in the postlude(s) the same way that I do them int he prelude? In other words have it fire off different calls depending on the say something was evaluated in the prelude?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。您可以在 postlude 表达式中包含 保护条件。这适用于显式事件引发和持久变量修改。
if
后面的表达式可以是任何有效的表达式,包括函数。例子:
Yes. You can include a guard condition on a postlude expression. This works for both explicit event raising and persistant variable modification. The expression following
if
can be any valid expression, including functions.Example: