gpt4 book ai didi

android - 在 Kotlin 中访问伴生对象中的父类变量

转载 作者:行者123 更新时间:2023-12-02 18:01:07 26 4
gpt4 key购买 nike

我试图在java等其他类中调用一个类的静态函数,但在kotlin中我无法创建静态函数,并且我必须创建一个伴生对象,在其中必须定义我的函数,但是在执行此操作时我无法访问父类变量,有什么方法可以在 kotlin 中实现此目的。

class One {

val abcList = ArrayList<String>()

companion object {

fun returnString() {
println(abcList[0]) // not able to access abcList here
}
}
}

class Two {

fun tryPrint() {
One.returnString()
}
}
// In Java we can do it like this

class One {

private static ArrayList<String> abcList = new ArrayList<>();

public void tryPrint() {
// assume list is not empty
for(String ab : abcList) {
System.out.println(ab);
}
}

public static void printOnDemand() {
System.out.println(abcList.get(0));
}
}

class Two {

public void tryPrint(){
One.printOnDemand();
}
}

我想像我们在java中那样访问类一的静态函数一样的有趣的returnString(),如果有人实现了这一点请帮忙。

最佳答案

在您的情况下,abcList 是该类的成员变量。类的每个实例都有自己的成员变量版本,这意味着静态方法无法访问它们。如果您想从伴生对象访问它,它也必须是静态的。

class One {
companion object {
val abcList = ArrayList<String>()

fun returnString() {
println(abcList[0])
}
}
}

class Two {
fun tryPrint() {
One.returnString()
}
}

这段代码可以工作,但请记住,在这种情况下,将只有一个 abcList 实例。从静态函数访问成员变量是不可能的(即使在 Java 中也是如此)。

这是 Java 示例的 Kotlin 版本:

class One {
companion object {
val abcList = ArrayList<String>()

fun printOnDemand() {
println(abcList[0])
}
}

fun tryPrint() {
for (ab in abcList) {
println(ab)
}
}
}

class Two {
fun tryPrint() {
One.printOnDemand()
}
}

关于android - 在 Kotlin 中访问伴生对象中的父类变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57673717/

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