美文网首页Kotlin
kotlin 成员内部类使用外部类变量

kotlin 成员内部类使用外部类变量

作者: 生活缺少一粒盐 | 来源:发表于2019-11-29 14:52 被阅读0次

    在kotlin代码中,内部类变量使用外部类变量,在定义内部类时,使用关键字inner
    代码实现:
    class Person(private var age: Int) {
    fun getAge(): Int {
    return age++
    }

    fun setAge(age: Int) {
        this.age = age
    }
    
    inner class A {
        fun getAge(): Int {
            return age
        }
    }
    

    }

    相关文章

      网友评论

        本文标题:kotlin 成员内部类使用外部类变量

        本文链接:https://www.haomeiwen.com/subject/bjhgwctx.html