You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//书中代码如下
fun main() {
foo { return@foo }
}
fun foo(returning: () -> Unit) {
println("before local return")
returning()
println("after local return")
return
}
//运行结果
before local return
//我本机运行结果
before local return
after local return
希望有大佬能解疑
The text was updated successfully, but these errors were encountered:
希望有大佬能解疑
The text was updated successfully, but these errors were encountered: