每天学一点 Kotlin -- 对象进阶:this 表达式

----《第一季Kotlin崛起:次世代Android开发 》学习笔记

总目录:每天学一点 Kotlin ---- 目录
上一篇:每天学一点 Kotlin -- 对象进阶:对象比较
下一篇:每天学一点 Kotlin -- 对象进阶:类型别名

1. this 表达式

  1. this 指代当前类的实例,但是如果代码里面的类很复杂,可能嵌套了各种的方法和扩展函数或者内部类,那么如何让this指代特定的成员呢?

1.2 举个栗子
1.2.1 场景1:

class ThisPerson(name: String, age: Int) {
    val name: String = name
    val age: Int = age

    fun printPersonInfo() {
        println("ThisPerson -- printPersonInfo() -- name = ${this.name}, age = ${this.age}")
    }

    inner class ThisStudent(id: String) {
        val studentId = id
        val studentInfo: String
            get() = "id = ${this.studentId}, name = ${name}, age = ${age} "
    }
}

fun testThis() {
    val p = ThisPerson("person", 30)
    val s = p.ThisStudent("id-01")
    p.printPersonInfo()
    println(s.studentInfo)
}

fun main() {
    testThis()
}

打印结果:

ThisPerson -- printPersonInfo() -- name = person, age = 30
id = id-01, name = person, age = 30 

在上面的代码中,外部类的 printPersonInfo() 方法中,this 指的是外部类 ThisPerson;在内部类的 getter() 方法中,this 指的是内部类 ThisStudent。因此可以得出:this 指的是最小范围内的当前对象。

1.2.2 场景2:
将上面代码的基础上,如果外部类和内部类都有相同名称的属性呢?

class ThisPerson1(name: String, age: Int) {
    val name: String = name
    val age: Int = age

    fun printPersonInfo() {
        println("ThisPerson1 -- printPersonInfo() -- name = ${this.name}, age = ${this.age}")
    }

    inner class ThisStudent1(id: String, name: String, age: Int) {
        val studentId = id
        val name = name
        val age = age
        val studentInfo: String
            get() = "id = ${this.studentId}, name = ${name}, age = ${age} "
    }
}

fun testThis1() {
    val p1 = ThisPerson1("person", 30)
    val s1 = p1.ThisStudent1("id-01", "student", 18)
    p1.printPersonInfo()
    println(s1.studentInfo)
}

fun main() {
    testThis1()
}

打印结果:

ThisPerson1 -- printPersonInfo() -- name = person, age = 30
id = id-01, name = student, age = 18

从打印结果得到,有相同名称的属性时,内部类使用的是自己的属性

1.2.3 场景3:
在场景2代码的基础上再次修改:在使用相同名称的属性,通过 this 来调用

class ThisPerson2(name: String, age: Int) {
    val name: String = name
    val age: Int = age

    fun printPersonInfo() {
        println("ThisPerson2 -- printPersonInfo() -- name = ${this.name}, age = ${this.age}")
    }

    inner class ThisStudent2(id: String, name: String, age: Int) {
        val studentId = id
        val name = name
        val age = age
        val studentInfo: String
            get() = "id = ${this.studentId}, name = ${this.name}, age = ${this.age} "
    }
}

fun testThis2() {
    val p2 = ThisPerson2("person", 30)
    val s2 = p2.ThisStudent2("id-02", "student", 18)
    p2.printPersonInfo()
    println(s2.studentInfo)
}

fun main() {
    testThis2()
}

打印结果:

ThisPerson2 -- printPersonInfo() -- name = person, age = 30
id = id-02, name = student, age = 18

从打印结果看,和场景2中是相同的,从而也验证了场景1中的结论。

1.3 在内部类中访问外部类中独有的属性:如果某些属性只在外部类中有,那么内部类直接访问外部类的这些属性就可以。内部类没有的属性,在访问时是不可以在之前加上 this 的,因为这些属性只有外部类有么。举个栗子,将场景1中的代码改为下面这样写时,编译器会直接报错的。

val studentInfo: String
            get() = "id = ${this.studentId}, name = ${this.name}, age = ${this.age} "

1.4 当外部类和内部类的属性名称相同时,使用 “this@外部类名称” 再加点号加属性名称,则访问的是外部类的属性。举个栗子:

class ThisPerson3(name: String, age: Int) {
    val name: String = name
    val age: Int = age

    fun printPersonInfo() {
        println("ThisPerson3 -- printPersonInfo() -- name = ${this.name}, age = ${this.age}")
    }

    inner class ThisStudent3(id: String, name: String, age: Int) {
        val studentId = id
        val name = name
        val age = age
        val studentInfo: String
            get() = "id = ${this.studentId}, name = ${this@ThisPerson3.name}, age = ${this@ThisPerson3.age} "
    }
}

fun testThis3() {
    val p3 = ThisPerson3("person", 30)
    val s3 = p3.ThisStudent3("id-02", "student", 18)
    p3.printPersonInfo()
    println(s3.studentInfo)
}

fun main() {
    testThis3()
}

打印结果:

ThisPerson3 -- printPersonInfo() -- name = person, age = 30
id = id-02, name = person, age = 30 

从打印结果看,对于相同名称的属性,在内部类访问的是外部类中的属性。
举一反三:使用 “this@内部类名称” 再加点号加属性名称,则访问的是内部类的属性。

3. 在扩展函数中使用 this

3.1 在内部类定义扩展函数的情况下,this 指的是什么呢?举个栗子:

class ThisPerson4(name: String, age: Int) {
    val name: String = name
    val age: Int = age

    fun printPersonInfo() {
        println("ThisPerson4 -- printPersonInfo() -- name = ${this.name}, age = ${this.age}")
    }

    inner class ThisStudent4(id: String, name: String, p: ThisPerson4) {
        val studentId = id
        val name = name
        val person = p

        val studentInfo: String
            get() = "id = ${this.studentId}, name = ${name}, age = ${age} "

        fun ThisPerson4.sayHello() = println("hello, I'm ThisPerson4, name = ${this.name}")

        fun letPersonSayHello() {
            person.sayHello()
        }
    }
}

fun testThis4() {
    val p4 = ThisPerson4("person", 30)
    val s4 = p4.ThisStudent4("id-02", "student", p4)
    p4.printPersonInfo()
    println(s4.studentInfo)
    s4.letPersonSayHello()
}

fun main() {
    testThis4()
}

打印结果:

ThisPerson4 -- printPersonInfo() -- name = person, age = 30
id = id-02, name = student, age = 30 
hello, I'm ThisPerson4, name = person

在扩展函数中,this 表示扩展函数的点左侧传递的接收者参数。

4. 在 Lambda 表达式中使用 this

4.1 在 Lambda 表达式中 this 指代的是定义函数类型属性的类,也就是含有这个 Lambda 表达式的对象。

4.2 举个栗子:

class ThisPerson5(name: String, age: Int) {
    val name: String = name
    val age: Int = age

    fun printPersonInfo() {
        println("ThisPerson5 -- printPersonInfo() -- name = ${this.name}, age = ${this.age}")
    }

    inner class ThisStudent5(id: String, name: String) {
        val studentId = id
        val name = name

        val studentInfo: String
            get() = "id = ${this.studentId}, name = ${name}, age = ${age} "

        val nameAddingStr: (String) -> String = { str -> this.name + str }
    }
}

fun testThis5() {
    val p5 = ThisPerson5("person", 30)
    val s5 = p5.ThisStudent5("id-02", "student")
    p5.printPersonInfo()
    println(s5.studentInfo)
    println(s5.nameAddingStr("-s5"))
}

fun main() {
    testThis5()
}

打印结果:

ThisPerson5 -- printPersonInfo() -- name = person, age = 30
id = id-02, name = student, age = 30 
student-s5
相关代码:https://gitee.com/fzq.com/test-demo
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,793评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,567评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,342评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,825评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,814评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,680评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,033评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,687评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,175评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,668评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,775评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,419评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,020评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,206评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,092评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,510评论 2 343

推荐阅读更多精彩内容