最佳答案
我希望能够将一个类实例保存为一个公共静态变量,但我不知道如何在 Kotlin 实现这一点。
class Foo {
public static Foo instance;
public Foo() {
instance = this;
}
}