作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何从 promise 中退出 promise ? perl6 文档没有提供简单的方法。例如:
my $x = start {
loop { # loop forever until "quit" is seen
my $y = prompt("Say something: ");
if $y ~~ / quit / {
# I want to exit the promise from here;
# "break" and "this.break" are not defined;
# "return" does not break the promise;
# I do NOT want an error exception when exiting a promise;
# I want to return a value as the result of this promise;
}
else { say $y; }
}
}
break()
和
this.break()
不被识别,和
return
不违背 promise 。
最佳答案
使用 last
keyword退出循环。start
的保留值block 是其最后一条语句返回的值。
所以:
my $x = start {
loop { # loop forever until "quit" is seen
my $y = prompt("Say something: ");
if $y ~~ / quit / {
last
}
else { say $y; }
}
42 # <-- The promise will be kept with value `42`
}
关于promise - 如何从 promise 中退出 promise ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45789784/
我是一名优秀的程序员,十分优秀!