如何在java类中访问kotlin pojo

时间:2017-08-14 11:27:07

标签: java kotlin pojo kotlin-android-extensions

class Example {

    @SerializedName("foo")
    @Expose
    var foo: String? = null
    @SerializedName("bar")
    @Expose
    var bar: String? = null
    @SerializedName("baz")
    @Expose
    var baz: String? = null
}

如何在java类中访问kotlin pojo类属性

1 个答案:

答案 0 :(得分:0)

我们可以按照下面的说明访问它

    Example example = new Example();
    example.setBar("");
    example.setBaz("");
    example.setFoo("");
    example.getBar();
    example.getBaz();
    example.getFoo();