gpt4 book ai didi

kotlin - 期待 Kotlin 中的成员声明

转载 作者:行者123 更新时间:2023-12-04 21:55:52 27 4
gpt4 key购买 nike

我想在构造函数中分配我的类变量,但出现错误“期望成员声明”

class YLAService {

var context:Context?=null

class YLAService constructor(context: Context) {
this.context=context;// do something
}
}

最佳答案

在 Kotlin 中,您可以像这样使用构造函数:

class YLAService constructor(val context: Context) {

}

更短:
class YLAService(val context: Context) {

}

如果你想先做一些处理:
class YLAService(context: Context) {

val locationService: LocationManager

init {
locationService = context.getService(LocationManager::class.java)
}
}

如果你真的想使用二级构造函数:
class YLAService {

val context: Context

constructor(context: Context) {
this.context = context
}

}

这看起来更像 Java 变体,但更冗长。

Kotlin reference on constructors .

关于kotlin - 期待 Kotlin 中的成员声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44368741/

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