我对Kotlin中的object关键字感到困惑。
示例:
object: LoginSample {
var userProfile: Userprofiles? = null
// User Application Context
fun login(context: Context) {
// ... Some operation with API here.
}
fun getProfile() = userProfiles
}
该物体何时会被摧毁?智能手机内存不足时会毁掉吗?还是有什么办法销毁它?我要确保它不会销毁,因为它具有用户个人资料。