gpt4 book ai didi

android - 打破或继续跳过类边界 kotlin

转载 作者:IT老高 更新时间:2023-10-28 13:45:06 24 4
gpt4 key购买 nike

有人遇到这个问题吗?
打破或继续跳过类边界 kotlin

当我要使用 break 或 continue 时会出现此问题。在带有接收器的 lambda 中,我创建了“letIn”

带有接收器代码的 lambda

fun letIn(componentName: String?, values: List<LifeService.Value?>?,
body: (String, List<LifeService.Value?>) -> Unit) {
if (!TextUtils.isEmpty(componentName) && (values != null && values.isNotEmpty())) {
body(componentName!!, values)
}
}

这个示例代码。

for (option in 0 until optionsSize) {
val component = optionsGroup?.options?.get(option)
component?.let {
with(component) {
letIn(presentation, values, { componentName, values ->
if (componentName == LifeComponentViewType.CHECKBOX) {
letIn(transformCheckBoxValues(optionsGroup), { data ->
dataSource?.push(componentName, ComponentDataCheckBoxCollection(name, data))
view.buildComponent(componentName)
// break or continue didnt work
})
} else {
dataSource?.push(componentName, ComponentDataCollection(name, values))
view.buildComponent(componentName)
}
})
}
}
}

因为上面的代码不起作用,所以我使用命令式方式。

for (option in 0 until optionsSize) {
val component = optionsGroup?.options?.get(option)
if (component != null) {
val presentation: String? = component.presentation
val values = component.values
if (!TextUtils.isEmpty(presentation)) {
if (presentation == LifeComponentViewType.CHECKBOX) {
val data = transformCheckBoxValues(optionsGroup)
if (data.isNotEmpty()) {
dataSource?.push(presentation, ComponentDataCheckBoxCollection(optionsGroup.name, data))
view.buildComponent(presentation)
return
}
} else {
dataSource?.push(presentation!!, ComponentDataCollection(component.name, values))
view.buildComponent(presentation!!)
}
} else {
return
}
}
}

有人有建议吗?

更新我已经通过内联高阶函数解决了这个问题。

最佳答案

(除了其他编码错误)您看到错误是因为在您的 lambda 中,您不能使用 breakcontinue跳出 lambda 到最近的循环。相反,您可以使用合格的 return跳出 lambda 到一个标签。

引用 the language reference

The return-expression returns from the nearest enclosing function, i.e. foo. (Note that such non-local returns are supported only for lambda expressions passed to inline functions.) If we need to return from a lambda expression, we have to label it and qualify the return:

(强调我的)

您的第二个示例表明您希望您的 lambda 从封闭函数执行非本地返回。因此,您无需限定您的 return , 但你的函数 letIn必须声明 inline (否则您只能进​​行本地合格返回)。

inline fun letIn(componentName: String?, values: List<LifeService.Value?>?,
body: (String, List<LifeService.Value?>) -> Unit) {
if (!TextUtils.isEmpty(componentName) && (values != null && values.isNotEmpty())) {
body(componentName!!, values)
}
}

...或者如果您希望它有接收器...

inline fun String?.letIn(values: List<LifeService.Value?>?,
body: String.(List<LifeService.Value?>) -> Unit) {
if (!TextUtils.isEmpty(this) && (values != null && values.isNotEmpty())) {
this!!.body(values)
}
}

当您声明 letIn作为 inline ,那么您可以放置​​return在你的 lambdas 中没有编译器提示。您的函数不必是 inline如果您的 lambda 只进行本地返回,但它需要有一个合格的返回(例如 return@letIn)。

您的第一个示例将如下所示...

for (option in 0 until optionsSize) {
val component = optionsGroup?.options?.get(option)
component?.let {
with(component) {
presentation.letIn(values, { values ->
if (this == LifeComponentViewType.CHECKBOX) {
this.letIn(transformCheckBoxValues(optionsGroup), { data ->
dataSource?.push(this, ComponentDataCheckBoxCollection(this, data))
view.buildComponent(this)
return //returns from function
})
} else {
dataSource?.push(this, ComponentDataCollection(name, values))
view.buildComponent(this)
return //returns from function
}
})
}
}
}

最后,请注意,如果您想提前跳出 lambda,但要继续执行外部循环,如下所示:

fun test1() {
val list = listOf("a", "b", "c")
val optionsSize = 2
for(i in 0..optionsSize) loop@ {
println("calliing list.forEach")
list.forEach lit@ {
if(it == "a") return@lit
if(it == "c") return@loop
println(it)
}
}
}

这行不通。 Intelli-sense 不会提示它,但编译器会引发内部错误。但是你可以将外部循环转换为 lambda,它确实可以工作......

fun test() {
val list = listOf("a", "b", "c")
val optionsSize = 2
(0..optionsSize).forEach() loop@ {
println("calliing list.forEach")
list.forEach lit@ {
if(it == "a") return@lit
if(it == "c") return@loop
println(it)
}
}
}

同样,这仅在将 lambda 传递给的函数声明为 inline 时才有效。 (如 forEach 被声明为 inline )。

关于android - 打破或继续跳过类边界 kotlin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47192948/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com