文章主要给大家介绍了关于kotlin中object关键字的三种使用场景,文中通过示例代码介绍的非常详细,对大家学习或者使用kotlin具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧
前言
object是Kotlin中的一个重要的关键字,也是Java中没有的。object主要有以下三种使用场景:
对象声明(Object Declaration)
伴生对象(Companion Object)
对象表达式(Object Expression)
下面就一一介绍它们所表示的含义、用法以及注意点,保证你在看完本篇之后就可以完全掌握object关键字的用法。
1. 对象声明(Object Declaration)
语法含义:将类的声明和定义该类的单例对象结合在一起(即通过object就实现了单例模式)
基本示例
1
2
3
4
5
object RepositoryManager{
fun method(){
println("I'm in object declaration")
}
}
即将class关键字替换为object关键字,来声明一个类,与此同时也声明它的一个对象。只要编写这么多代码,这个类就已经是单例的了。
使用
a. 在Kotlin中:
1
2
3
fun main(args: Array<String>) {
RepositoryManager.method()
}
像在Java中调用静态方法(在kotlin中没有静态方法)一样去调用其中定义的方法,但实际上是使用RepositoryManager类的单例对象去调用实例方法。如果对此还不能理解,可以看看下面对在Java中去使用的说明。
b. 在Java中:
1
2
3
4
5
publicclassJavaTest {
publicstaticvoidmain(String[] args) {
RepositoryManager.INSTANCE.method();
}
}
换句话说,object declaration的类最终被编译成:一个类拥有一个静态成员来持有对自己的引用,并且这个静态成员的名称为INSTANCE,当然这个INSTANCE是单例的,故这里可以这么去使用。如果用Java代码来声明这个RepositoryManager的话,可以有如下代码:
1
2
3
4
5
classRepositoryManager{
privateRepositoryManager(){}
publicstaticfinalRepositoryManager INSTANCE = newRepositoryManager();
}
4) 注意点:
尽管和普通类的声明一样,可以包含属性、方法、初始化代码块以及可以继承其他类或者实现某个接口,但是它不能包含构造器(包括主构造器以及次级构造器)
它也可以定义在一个类的内部:
1
2
3
4
5
6
7
8
9
10
classObjectOuter {
object Inner{
fun method(){
println("I'm in inner class")
}
}
}
fun main(args: Array<String>) {
ObjectOuter.Inner.method()
}
2、伴生对象(Companion object)
在阐述伴生对象之前,首先我们要明确一点:在Kotlin中是没有static关键字的,也就是意味着没有了静态方法和静态成员。那么在kotlin中如果要想表示这种概念,取而代之的是包级别函数(package-level function)和我们这里提到的伴生对象。至于它们之间的区别,不急,我们后面再说。
语法形式:
1
2
3
4
5
classA{
companion object 伴生对象名(可以省略){
//define method and field here
}
}
基本示例:
1
2
3
4
5
6
7
8
9
10
11
classObjectTest {
companion object MyObjec{
val a = 20
fun method() {
println("I'm in companion object")
}
}
}
使用:
a. 在Kotlin中:
1
2
3
4
5
6
7
8
9
fun main(args: Array<String>) {
//方式一
ObjectTest.MyObject.method()
println(ObjectTest.MyObject.a)
//方式二(推荐方式)
ObjectTest.method()
println(ObjectTest.a)
}
在这里请注意:在定义(定义时如果省略了伴生对象名,那么编译器会为其提供默认的名字Companion)和调用时伴生对象名是可以省略的。而且在方式二中,注意调用形式,是通过类名.方法名()的形式进行的,我们在没有生成ObjectTest类的对象时,调用了定义其内部伴生对象中定义的属性和方法,是不是类似Java中的静态方法的概念。
通过现象看本质
通过javap命令,让我们看看其生成的字节码:
注意红框中,这个MyObject成员变量的类型,是使用
MyObject这个内部类。注意它这里并没有外部类的引用,说明是以静态内部类的形式存在的。
还记得我们在前面遗留的问题:同样都可以用来替代Java中的static的概念,那么在伴生对象中定义的方法和包级别函数有什么区别呢?
先来反编译一个包含包级别函数的kt文件(或者说是类):
可以看出,一个名叫ObjectTest2.kt文件,实际上最终会生成一个名叫ObjectTest2Kt的类,而在这个kt文件中定义的顶级函数(包级别函数)是作为这个类的静态方法的形态存在的。
那么现在可以回答遗留的问题了:实际上就是平级类(姑且称之)中的静态方法和静态内部类中的方法的区别,因为静态内部类中的方法是可以访问外部类中定义的static方法和成员的,哪怕是private的(包括私有构造器,我们常用的基于静态内部类实现的单例模式就是基于这一点),而平级类中方法是访问不到当前类中静态的private成员的。如果你觉得文字这么描述还不够直观,那么我们来看下面这一张图(盗自Kotlin in action):
@JvmStatic注解:我们把前面定义的method方法上加上此注解,重新build工程,然后再来反编译ObjectTest和ObjectTest$MyObject这个两个类,看会有什么变化。
对于这个静态内部类而言,加与不加@JvmStatic注解其类的结构是没有变化的。但是对于目标类而言,很明显多了一个静态方法,这样我们就不难理解@JvmStatic注解的作用了:将伴生对象类中定义的实例方法和属性,添加到目标类中,并且以静态的形式存在。
对于伴生对象,最后再补充一点:一个类的伴生对象只能有一个。仔细想想也很好理解,伴生对象的名称是可以省略的。如果允许对应多个伴生对象,那么我们在多个伴生对象中都定义了一模一样的函数,在调用时到底是使用哪个伴生对象的方法呢?就会产生歧义,这样就不难理解这条语法规定了。
3、对象表达式(Object Expression)
Java的匿名内部类回顾:
在去学习对象表达式之前,我们先来回顾一下Java中的匿名内部类。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
interfaceContents {
voidabsMethod();
}
publicclassHello {
publicContents contents() {
returnnewContents() {
@Override
publicvoidabsMethod() {
System.out.println("method invoked...");
}
};
}
publicstaticvoidmain(String[] args) {
Hello hello = newHello();
hello.contents().absMethod(); //打印method invoked...
}
}
``` newContents()
这个contents()方法返回的是一个匿名内部类的对象,这个匿名内部类实现了Contents接口。这些代码很熟悉,不多说了。现在提出两个局限性问题:
a. 如果在匿名内部类中新添加了一些属性和方法,那么在外界是无法调用的
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
returnnewContents() {
privateinti = 1;
publicintvalue() {
returni;
}
@Override
publicvoidabsMethod() {
System.out.println("method invoked...");
}
};
publicstaticvoidmain(String[] args) {
Hello hello = newHello();
hello.contents().absMethod();
hello.contents().value(); //Cannot resolve method 'value()'
}
当你想使用这个value方法时,编译器会报错。也好理解,就是多态的知识,父类型的引用是无法知晓子类添加方法的存在的。
b. 一个匿名内部类肯定是实现了一个接口或者是继承一个类,并且只能是一个,用数学术语说是“有且只有一个”
2) 语法形式:
object [ : 接口1,接口2,类型1, 类型2]{} //中括号中的可省略
3) 使用示例:
a. 实现一个接口或类
1
2
3
4
5
6
7
8
9
10
11
12
interfaceAA {
fun a()
}
fun main(args: Array) {
val aa = object : AA {
override fun a() {
println("a invoked")
}
}
aa.a()
}
b. 不实现任何接口和类,并且在匿名内部类中添加方法
1
2
3
4
5
6
7
8
9
10
fun main(args: Array) {
val obj = object {
fun a() {
println("a invoked")
}
}
obj.a() //打印:a invoked
}
从这个例子可以看出,前面我们提到的Java匿名内部类的第一个局限的地方在Kotlin中就不存在了,新添加的方法也是可以调用的
c. 实现多个接口和类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fun main(args: Array) {
val cc = object : AA, BB() {
override fun a() {
}
override fun b() {
}
}
cc.a()
cc.b()
}
从这个例子可以看出,前面我们提到的Java匿名内部类的第二个局限性在kotlin中也不存在
4) 使用注意点:
这是Kotlin官方文档上的一段话:匿名对象只有定义成局部变量和private成员变量时,才能体现它的真实类型。如果你是将匿名对象作为public函数的返回值或者是public属性时,你只能将它看做是它的父类,当然你不指定任何类型时就当做Any看待。这时,你在匿名对象中添加的属性和方法是不能够被访问的。
再来举个例子帮助大家理解:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
https://vk.com/topic-231169012_54248950
https://vk.com/topic-231169012_54248966
https://vk.com/topic-231169012_54249018
https://vk.com/topic-231169012_54249048
https://vk.com/topic-231169012_54249071
https://vk.com/topic-231169012_54249121
https://vk.com/topic-231169012_54249241
https://vk.com/topic-231169012_54249286
https://vk.com/topic-231169012_54249326
https://vk.com/topic-231169012_54249362
https://vk.com/topic-231169012_54249404
https://vk.com/topic-231169012_54249440
https://vk.com/topic-231169012_54249492
https://vk.com/topic-231169012_54249533
https://vk.com/topic-231169012_54249574
https://vk.com/topic-231169012_54249606
https://vk.com/topic-231169012_54249634
https://vk.com/topic-231169012_54249668
https://vk.com/topic-231169012_54249689
https://vk.com/topic-231169012_54249735
https://vk.com/topic-231169012_54249750
https://vk.com/topic-231169012_54249776
https://vk.com/topic-231169012_54249806
https://vk.com/topic-231169012_54249831
https://vk.com/topic-231169012_54249869
https://vk.com/topic-231169012_54249928
https://vk.com/topic-231169012_54249965
https://vk.com/topic-231169012_54250016
https://vk.com/topic-231169012_54250072
https://vk.com/topic-231169012_54250107
https://vk.com/topic-231169012_54250175
https://vk.com/topic-231169012_54250282
https://vk.com/topic-231169012_54250370
https://vk.com/topic-231169012_54250431
https://vk.com/topic-231169012_54250465
https://vk.com/topic-231169012_54250519
https://vk.com/topic-231169012_54250550
https://vk.com/topic-231169012_54250563
https://vk.com/topic-231169012_54250581
https://vk.com/topic-231169012_54250604
https://vk.com/topic-231169012_54250618
https://vk.com/topic-231169012_54250642
https://vk.com/topic-231169012_54250692
https://vk.com/topic-231169012_54250716
https://vk.com/topic-231169012_54250755
https://vk.com/topic-231169012_54250781
https://vk.com/topic-231169012_54250824
https://vk.com/topic-231169012_54250854
https://vk.com/topic-231169012_54250886
https://vk.com/topic-231169012_54250913
https://vk.com/topic-231169012_54250978
https://vk.com/topic-231169012_54251008
https://vk.com/topic-231169012_54251043
https://vk.com/topic-231169012_54251071
https://vk.com/topic-231169012_54251168
https://vk.com/topic-231169012_54251249
https://vk.com/topic-231169012_54251273
https://vk.com/topic-231169012_54251298
https://vk.com/topic-231169012_54251316
https://vk.com/topic-231169012_54251340
https://vk.com/topic-231169012_54251385
https://vk.com/topic-231169012_54251413
https://vk.com/topic-231169012_54251432
https://vk.com/topic-231169012_54251461
https://vk.com/topic-231169012_54251494
https://vk.com/topic-231169012_54251508
https://vk.com/topic-231169012_54251521
https://vk.com/topic-231169012_54251544
https://vk.com/topic-231169012_54251582
https://vk.com/topic-231169012_54251594
https://vk.com/topic-231169012_54251628
https://vk.com/topic-231169012_54251701
https://vk.com/topic-231169012_54251719
https://vk.com/topic-231169012_54251735
https://vk.com/topic-231169012_54251752
https://vk.com/topic-231169012_54251772
https://vk.com/topic-231169012_54251798
https://vk.com/topic-231169012_54251815
https://vk.com/topic-231169012_54251830
https://vk.com/topic-231169012_54251850
https://vk.com/topic-231169012_54251872
https://vk.com/topic-231169012_54251905
https://vk.com/topic-231169012_54251923
https://vk.com/topic-231169012_54251941
https://vk.com/topic-231169012_54251974
https://vk.com/topic-231169012_54252022
https://vk.com/topic-231169012_54252037
https://vk.com/topic-231169012_54252054
https://vk.com/topic-231169012_54252080
https://vk.com/topic-231169012_54252104
https://vk.com/topic-231169012_54252129
https://vk.com/topic-231169012_54252145
https://vk.com/topic-231169012_54252172
https://vk.com/topic-231169012_54252189
https://vk.com/topic-231169012_54252210
https://vk.com/topic-231169012_54252226
https://vk.com/topic-231169012_54252259
https://vk.com/topic-231169012_54252288
https://vk.com/topic-231169012_54252310
https://vk.com/topic-231169012_54252327
https://vk.com/topic-231169012_54252346
https://vk.com/topic-231169012_54252369
https://vk.com/topic-231169012_54252385
https://vk.com/topic-231169012_54252403
https://vk.com/topic-231169012_54252420
https://vk.com/topic-231169012_54252449
https://vk.com/topic-231169012_54252449
https://vk.com/topic-231169012_54252500
https://vk.com/topic-231169012_54125818
https://vk.com/topic-231169012_54125835
https://vk.com/topic-231169012_54125847
https://vk.com/topic-231169012_54125862
https://vk.com/topic-231169012_54125874
https://vk.com/topic-231169012_54125889
https://vk.com/topic-231169012_54125902
https://vk.com/topic-231169012_54125910
https://vk.com/topic-231169012_54125922
https://vk.com/topic-231169012_54125931
https://vk.com/topic-231169012_54125938
https://vk.com/topic-231169012_54125948
https://vk.com/topic-231169012_54125955
https://vk.com/topic-231169012_54125965
https://vk.com/topic-231169012_54125976
https://vk.com/topic-231169012_54125987
https://vk.com/topic-231169012_54125999
https://vk.com/topic-231169012_54126010
https://vk.com/topic-231169012_54126020
https://vk.com/topic-231169012_54126029
https://vk.com/topic-231169012_54126039
https://vk.com/topic-231169012_54126063
https://vk.com/topic-231169012_54126073
https://vk.com/topic-231169012_54126085
https://vk.com/topic-231169012_54126096
https://vk.com/topic-231169012_54126101
https://vk.com/topic-231169012_54126112
https://vk.com/topic-231169012_54126123
https://vk.com/topic-231169012_54126130
https://vk.com/topic-231169012_54126140
https://vk.com/topic-231169012_54126146
https://vk.com/topic-231169012_54126153
https://vk.com/topic-231169012_54126162
https://vk.com/topic-231169012_54126170
https://vk.com/topic-231169012_54126179
https://vk.com/topic-231169012_54126190
https://vk.com/topic-231169012_54126205
https://vk.com/topic-231169012_54126212
https://vk.com/topic-231169012_54126225
https://vk.com/topic-231169012_54126236
https://vk.com/topic-231169012_54126243
https://vk.com/topic-231169012_54126253
https://vk.com/topic-231169012_54128507
https://vk.com/topic-231169012_54128521
https://vk.com/topic-231169012_54128549
https://vk.com/topic-231169012_54128579
https://vk.com/topic-231169012_54128597
https://vk.com/topic-231169012_54128630
https://vk.com/topic-231169012_54128653
https://vk.com/topic-231169012_54128674
https://vk.com/topic-231169012_54128689
https://vk.com/topic-231169012_54128705
https://vk.com/topic-231169012_54128722
https://vk.com/topic-231169012_54128742
https://vk.com/topic-231169012_54128764
https://vk.com/topic-231169012_54128781
https://vk.com/topic-231169012_54128833
https://vk.com/topic-231169012_54128861
https://vk.com/topic-231169012_54128890
https://vk.com/topic-231169012_54128911
https://vk.com/topic-231169012_54128952
https://vk.com/topic-231169012_54128983
https://vk.com/topic-231169012_54129008
https://vk.com/topic-231169012_54129048
https://vk.com/topic-231169012_54129081
https://vk.com/topic-231169012_54129112
https://vk.com/topic-231169012_54129145
https://vk.com/topic-231169012_54129182
https://vk.com/topic-231169012_54129207
https://vk.com/topic-231169012_54129231
https://vk.com/topic-231169012_54129251
https://vk.com/topic-231169012_54129269
https://vk.com/topic-231169012_54129276
https://vk.com/topic-231169012_54129291
https://vk.com/topic-231169012_54129300
https://vk.com/topic-231169012_54129307
https://vk.com/topic-231169012_54129321
https://vk.com/topic-231169012_54129327
https://vk.com/topic-231169012_54129338
https://vk.com/topic-231169012_54129343
https://vk.com/topic-231169012_54129353
https://vk.com/topic-231169012_54129370
https://vk.com/topic-231169012_54129377
https://vk.com/topic-231169012_54129396
https://vk.com/topic-231169012_54129409
https://vk.com/topic-231169012_54129421
https://vk.com/topic-231169012_54129432
https://vk.com/topic-231169012_54129444
https://vk.com/topic-231169012_54129459
https://vk.com/topic-231169012_54129471
https://vk.com/topic-231169012_54129488
https://vk.com/topic-231169012_54129493
https://vk.com/topic-231169012_54129565
https://vk.com/topic-231169012_54129582
https://vk.com/topic-231169012_54129603
https://vk.com/topic-231169012_54129621
https://vk.com/topic-231169012_54129635
https://vk.com/topic-231169012_54129654
https://vk.com/topic-231169012_54129666
https://vk.com/topic-231169012_54129676
https://vk.com/topic-231169012_54129690
https://vk.com/topic-231169012_54129708
https://vk.com/topic-231169012_54129726
https://vk.com/topic-231169012_54129742
https://vk.com/topic-231169012_54129766
https://vk.com/topic-231169012_54129792
https://vk.com/topic-231169012_54129818
https://vk.com/topic-231169012_54129840
https://vk.com/topic-231169012_54129859
https://vk.com/topic-231169012_54129874
https://vk.com/topic-231169012_54129890
https://vk.com/topic-231169012_54129911
https://vk.com/topic-231169012_54129930
https://vk.com/topic-231169012_54129953
https://vk.com/topic-231169012_54129977
https://vk.com/topic-231169012_54129992
https://vk.com/topic-231169012_54130011
https://vk.com/club231169012?from=groups
https://vk.com/club230870556?from=groups
https://vk.com/topic-231169012_54130035
https://vk.com/topic-231169012_54130052
https://vk.com/topic-231169012_54130066
https://vk.com/topic-231169012_54130078
https://vk.com/topic-231169012_54130090
https://vk.com/topic-231169012_54130102
https://vk.com/topic-231169012_54130116
https://vk.com/topic-231169012_54130123
https://vk.com/topic-231169012_54130137
https://vk.com/topic-231169012_54130147
https://vk.com/topic-231169012_54130159
https://vk.com/topic-231169012_54130164
https://vk.com/topic-231169012_54130173
https://vk.com/topic-231169012_54130184
https://vk.com/topic-231169012_54130190
https://vk.com/topic-231169012_54130199
https://vk.com/topic-231169012_54130209
https://vk.com/topic-231169012_54130215
https://vk.com/topic-231169012_54130223
https://vk.com/topic-231169012_54130233
https://vk.com/topic-231169012_54130240
https://vk.com/topic-231169012_54130242
https://vk.com/topic-231169012_54130254
https://vk.com/topic-231169012_54130262
https://vk.com/topic-231169012_54130269
https://vk.com/topic-231169012_54130282
https://vk.com/topic-231169012_54130314
https://vk.com/topic-231169012_54130331
https://vk.com/topic-231169012_54130331
https://vk.com/topic-231169012_54130492
https://vk.com/topic-231169012_54130519
https://vk.com/topic-231169012_54130540
https://vk.com/topic-231169012_54128521
https://vk.com/topic-231169012_54130560
https://vk.com/topic-231169012_54130610
https://vk.com/topic-231169012_54130628
https://vk.com/topic-231169012_54130643
https://vk.com/topic-231169012_54130664
https://vk.com/topic-231169012_54130682
https://vk.com/topic-231169012_54130700
https://vk.com/topic-231169012_54130734
https://vk.com/topic-231169012_54130757
https://vk.com/topic-231169012_54130775
https://vk.com/topic-231169012_54130799
https://vk.com/topic-231169012_54130819
https://vk.com/topic-231169012_54130835
https://vk.com/topic-231169012_54130837
https://vk.com/topic-231169012_54130844
https://vk.com/topic-231169012_54130852
https://vk.com/topic-231169012_54130991
https://vk.com/topic-231169012_54130859
https://vk.com/topic-231169012_54130879
https://vk.com/topic-231169012_54130896
https://vk.com/topic-231169012_54130905
https://vk.com/topic-231169012_54130911
https://vk.com/topic-231169012_54130920
https://vk.com/topic-231169012_54130936
https://vk.com/topic-231169012_54130942
https://vk.com/topic-231169012_54130953
https://vk.com/topic-231169012_54130963
https://vk.com/topic-231169012_54130970
https://vk.com/topic-231169012_54131016
https://vk.com/topic-231171290_54432416
https://vk.com/topic-231171290_54432430
https://vk.com/topic-231171290_54432451
https://vk.com/topic-231171290_54432461
https://vk.com/topic-231171290_54440001
https://vk.com/topic-231171290_54440016
https://vk.com/topic-231171290_54440025
https://vk.com/topic-231171290_54440039
https://vk.com/topic-231171290_54440050
https://vk.com/topic-231171290_54440074
https://vk.com/topic-231171290_54440085
https://vk.com/topic-231171290_54440097
https://vk.com/topic-231171290_54440097
https://vk.com/topic-231171290_54440130
https://vk.com/topic-231171290_54440155
https://vk.com/topic-231171290_54440242
https://vk.com/topic-231171290_54440286
https://vk.com/topic-231171290_54440352
https://vk.com/topic-231171290_54440368
https://vk.com/topic-231171290_54440386
https://vk.com/topic-231171290_54440404
https://vk.com/topic-231171290_54440425
https://vk.com/topic-231171290_54440437
https://vk.com/topic-231171290_54440447
https://vk.com/topic-231171290_54440461
https://vk.com/topic-231171290_54440473
https://vk.com/topic-231171290_54440483
https://vk.com/topic-231171290_54440503
https://vk.com/topic-231171290_54440517
https://vk.com/topic-231171290_54440527
https://vk.com/topic-231171290_54440544
https://vk.com/topic-231171290_54440558
https://vk.com/topic-231171290_54440570
https://vk.com/topic-231171290_54440586
https://vk.com/topic-231171290_54440602
https://vk.com/topic-231171290_54440620
https://vk.com/topic-231171290_54440633
https://vk.com/topic-231171290_54440644
https://vk.com/topic-231171290_54440653
https://vk.com/topic-231171290_54440662
https://vk.com/topic-231171290_54440673
https://vk.com/topic-231171290_54440679
https://vk.com/topic-231171290_54440691
https://vk.com/topic-231171290_54440706
https://vk.com/topic-231171290_54440717
https://vk.com/topic-231171290_54440735
https://vk.com/topic-231171290_54440748
https://vk.com/topic-231171290_54440762
https://vk.com/topic-231171290_54440772
https://vk.com/topic-231171290_54440787
https://vk.com/topic-231171290_54440796
https://vk.com/topic-231171290_54440804
https://vk.com/topic-231171290_54440816
https://vk.com/topic-231171290_54440828
https://vk.com/topic-231171290_54440843
https://vk.com/topic-231171290_54440849
https://vk.com/topic-231171290_54440854
https://vk.com/topic-231171290_54440865
https://vk.com/topic-231171290_54440875
https://vk.com/topic-231171290_54440881
https://vk.com/topic-231171290_54440889
https://vk.com/topic-231171290_54440900
https://vk.com/topic-231171290_54440905
https://vk.com/topic-231171290_54440913
https://vk.com/topic-231171290_54440921
https://vk.com/topic-231171290_54440931
https://vk.com/topic-231171290_54440939
https://vk.com/topic-231171290_54440946
https://vk.com/topic-231171290_54440954
https://vk.com/topic-231171290_54440960
https://vk.com/topic-231171290_54440967
https://vk.com/topic-231171290_54440970
https://vk.com/topic-231171290_54440976
https://vk.com/topic-231171290_54440980
https://vk.com/topic-231171290_54440985
https://vk.com/topic-231171290_54440992
https://vk.com/topic-231171290_54440999
https://vk.com/topic-231171290_54441006
https://vk.com/topic-231171290_54441008
https://vk.com/topic-231171290_54441013
https://vk.com/topic-231171290_54441021
https://vk.com/topic-231171290_54441025
https://vk.com/topic-231171290_54441029
https://vk.com/topic-231171290_54441037
https://vk.com/topic-231171290_54441042
https://vk.com/topic-231171290_54441045
https://vk.com/topic-231171290_54441051
https://vk.com/topic-231171290_54441057
https://vk.com/topic-231171290_54441061
https://vk.com/topic-231171290_54441073
https://vk.com/topic-231171290_54441078
https://vk.com/topic-231171290_54441082
https://vk.com/topic-231171290_54441086
https://vk.com/topic-231171290_54441091
https://vk.com/topic-231171290_54441095
https://vk.com/topic-231171290_54441098
https://vk.com/topic-231171290_54441104
https://vk.com/topic-231171290_54441110
https://vk.com/topic-231171290_54441116
https://vk.com/topic-231171290_54441121
https://vk.com/topic-231171290_54441128
https://vk.com/topic-231171290_54441136
https://vk.com/topic-231171290_54441140
https://vk.com/topic-231171290_54441146
https://vk.com/topic-231171290_54441156
https://vk.com/topic-231171290_54441160
https://vk.com/topic-231171290_54441165
https://vk.com/topic-231171290_54441176
https://vk.com/topic-231171290_54441184
https://vk.com/topic-231171290_54441190
https://vk.com/topic-230870556_53696434
https://vk.com/topic-230870556_53696695
https://vk.com/topic-230870556_53696742
https://vk.com/topic-230870556_53696776
https://vk.com/topic-230870556_53696845
https://vk.com/topic-230870556_53696896
https://vk.com/topic-230870556_53696935
https://vk.com/topic-230870556_53696957
https://vk.com/topic-230870556_53696983
https://vk.com/topic-230870556_53697009
https://vk.com/topic-230870556_53697044
https://vk.com/topic-230870556_53697073
https://vk.com/topic-230870556_53697089
https://vk.com/topic-230870556_53697116
https://vk.com/topic-230870556_53697124
https://vk.com/topic-230870556_53697136
https://vk.com/topic-230870556_53697150
https://vk.com/topic-230870556_53697160
https://vk.com/topic-230870556_53697171
https://vk.com/topic-230870556_53697183
https://vk.com/topic-230870556_53697187
https://vk.com/topic-230870556_53697205
https://vk.com/topic-230870556_53697211
https://vk.com/topic-230870556_53697222
https://vk.com/topic-230870556_53701920
https://vk.com/topic-230870556_53701991
https://vk.com/topic-230870556_53702003
https://vk.com/topic-230870556_53702131
https://vk.com/topic-230870556_53702144
https://vk.com/topic-230870556_53702169
https://vk.com/topic-230870556_53702189
https://vk.com/topic-230870556_53702203
https://vk.com/topic-230870556_53702214
https://vk.com/topic-230870556_53702228
https://vk.com/topic-230870556_53702243
https://vk.com/topic-230870556_53702289
https://vk.com/topic-230870556_53702301
https://vk.com/topic-230870556_53702314
https://vk.com/topic-230870556_53702323
https://vk.com/topic-230870556_53702333
https://vk.com/topic-230870556_53702345
https://vk.com/topic-230870556_53702356
https://vk.com/topic-230870556_53702368
https://vk.com/topic-230870556_53702377
https://vk.com/topic-230870556_53702390
https://vk.com/topic-230870556_53702399
https://vk.com/topic-230870556_53702410
https://vk.com/topic-230870556_53702414
https://vk.com/topic-230870556_53702417
https://vk.com/topic-230870556_53702459
https://vk.com/topic-230870556_53702469
https://vk.com/topic-230870556_53702478
https://vk.com/topic-230870556_53702487
https://vk.com/topic-230870556_53702496
https://vk.com/topic-230870556_53702504
https://vk.com/topic-230870556_53702518
https://vk.com/topic-230870556_53702529
https://vk.com/topic-230870556_53702540
https://vk.com/topic-230870556_53702546
https://vk.com/topic-230870556_53702556
https://vk.com/topic-230870556_53702563
https://vk.com/topic-230870556_53702566
https://vk.com/topic-230870556_53702575
https://vk.com/topic-230870556_53702580
https://vk.com/topic-230870556_53702588
https://vk.com/topic-230870556_53702596
https://vk.com/topic-230870556_53702600
https://vk.com/topic-230870556_53702605
https://vk.com/topic-230870556_53702611
https://vk.com/topic-230870556_53702615
https://vk.com/topic-230870556_53702616
https://vk.com/topic-230870556_53702652
https://vk.com/topic-230870556_53702655
https://vk.com/topic-230870556_53702659
https://vk.com/topic-230870556_53702662
https://vk.com/topic-230870556_53702668
https://vk.com/topic-230870556_53702672
https://vk.com/topic-230870556_53702675
https://vk.com/topic-230870556_53702681
https://vk.com/topic-230870556_53702684
https://vk.com/topic-230870556_53702687
https://vk.com/topic-230870556_53702693
https://vk.com/topic-230870556_53702696
https://vk.com/topic-230870556_53702703
https://vk.com/topic-230870556_53702709
https://vk.com/topic-230870556_53702714
https://vk.com/topic-230870556_53702720
https://vk.com/topic-230870556_53702721
https://vk.com/topic-230870556_53702727
https://vk.com/topic-230870556_53702732
https://vk.com/topic-230870556_53702747
https://vk.com/topic-230870556_53702754
https://vk.com/topic-230870556_53702759
https://vk.com/topic-230870556_53702771
https://vk.com/topic-230870556_53702782
https://vk.com/topic-230870556_53702793
https://vk.com/topic-230870556_53702803
https://vk.com/topic-230870556_53702814
https://vk.com/topic-230870556_53702823
https://vk.com/topic-230870556_53702835
https://vk.com/topic-230870556_53702849
https://vk.com/topic-230870556_53702863
https://vk.com/topic-230870556_53702906
https://vk.com/topic-230870556_53702924
https://vk.com/topic-230870556_53702943
https://vk.com/topic-230870556_53702957
https://vk.com/topic-230870556_53702971
https://vk.com/topic-230870556_53702981
https://vk.com/topic-230870556_53702993
https://vk.com/topic-230870556_53703003
https://vk.com/topic-230870556_53703016
https://vk.com/topic-230870556_53703036
https://vk.com/topic-230870556_53703079
https://vk.com/topic-230870556_53703090
https://vk.com/topic-230870556_53703094
https://vk.com/topic-230870556_53703114
https://vk.com/topic-230870556_53703129
https://vk.com/topic-230870556_53703142
https://vk.com/topic-230870556_53703152
https://vk.com/topic-230870556_53703541
https://vk.com/topic-230870556_53703557
https://vk.com/topic-230870556_53703630
https://vk.com/topic-230870556_53742801
https://vk.com/topic-230870556_53742818
https://vk.com/topic-230870556_53742838
https://vk.com/topic-230870556_53742844
https://vk.com/topic-230870556_53742886
https://vk.com/topic-230870556_53742905
https://vk.com/topic-230870556_53742929
https://vk.com/topic-230870556_53742951
https://vk.com/topic-230870556_53742969
https://vk.com/topic-230870556_53742977
https://vk.com/topic-230870556_53742988
https://vk.com/topic-230870556_53743011
https://vk.com/topic-230870556_53743060
https://vk.com/topic-230870556_53743087
https://vk.com/topic-230870556_53743106
https://vk.com/topic-230870556_53743124
https://vk.com/topic-230870556_53743174
https://vk.com/topic-230870556_53743194
https://vk.com/topic-230870556_53743222
https://vk.com/topic-230870556_53743248
https://vk.com/topic-230870556_53743314
https://vk.com/topic-230870556_53743342
https://vk.com/topic-230870556_53743363
https://vk.com/topic-230870556_53743382
https://vk.com/topic-230870556_53743403
https://vk.com/topic-230870556_53743423
https://vk.com/topic-230870556_53743440
https://vk.com/topic-230870556_53743469
https://vk.com/topic-230870556_53743491
https://vk.com/topic-230870556_53743516
https://vk.com/topic-230870556_53743532
https://vk.com/topic-230870556_53743549
https://vk.com/topic-230870556_53743572
https://vk.com/topic-230870556_53743593
https://vk.com/topic-230870556_53743614
https://vk.com/topic-230870556_53743636
https://vk.com/topic-230870556_53743650
https://vk.com/topic-230870556_53743678
https://vk.com/topic-230870556_53743700
https://vk.com/topic-230870556_53743724
https://vk.com/topic-230870556_53743739
https://vk.com/topic-230870556_53743749
https://vk.com/topic-230870556_53743758
https://vk.com/topic-230870556_53743771
https://vk.com/topic-230870556_53743786
https://vk.com/topic-230870556_53743812
https://vk.com/topic-230870556_53743816
https://vk.com/topic-230870556_53743830
https://vk.com/topic-230870556_53743849
https://vk.com/topic-230870556_53744338
https://vk.com/topic-230870556_53744356
https://vk.com/topic-230870556_53744375
https://vk.com/topic-230870556_53744388
https://vk.com/topic-230870556_53744398
https://vk.com/topic-230870556_53744414
https://vk.com/topic-230870556_53744436
https://vk.com/topic-230870556_53744454
https://vk.com/topic-230870556_53744469
https://vk.com/topic-230870556_53744491
https://vk.com/topic-230870556_53744508
https://vk.com/topic-230870556_53744533
https://vk.com/topic-230870556_53744567
https://vk.com/topic-230870556_53744591
https://vk.com/topic-230870556_53744611
https://vk.com/topic-230870556_53744623
https://vk.com/topic-230870556_53744643
https://vk.com/topic-230870556_53744668
https://vk.com/topic-230870556_53744679
https://vk.com/topic-230870556_53744692
https://vk.com/topic-230870556_53744710
https://vk.com/topic-230870556_53744724
https://vk.com/topic-230870556_53744745
https://vk.com/topic-230870556_53744767
https://vk.com/topic-230870556_53744784
https://vk.com/topic-230870556_53744821
https://vk.com/topic-230870556_53744845
https://vk.com/topic-230870556_53778286
https://vk.com/topic-230870556_53778295
https://vk.com/topic-230870556_53778305
https://vk.com/topic-230870556_53778316
https://vk.com/topic-230870556_53778327
https://vk.com/topic-230870556_53778339
https://vk.com/topic-230870556_53778349
https://vk.com/topic-230870556_53778359
https://vk.com/topic-230870556_53778368
https://vk.com/topic-230870556_53778381
https://vk.com/topic-230870556_53778392
https://vk.com/topic-230870556_53778410
https://vk.com/topic-230870556_53778422
https://vk.com/topic-230870556_53778435
https://vk.com/topic-230870556_53778500
https://vk.com/topic-230870556_53778518
https://vk.com/topic-230870556_53778536
https://vk.com/topic-230870556_53778551
https://vk.com/topic-230870556_53778562
https://vk.com/topic-230870556_53778580
https://vk.com/topic-230870556_53778598
https://vk.com/topic-230870556_53778621
https://vk.com/topic-230870556_53778639
https://vk.com/topic-230870556_53778653
https://vk.com/topic-230870556_53778664
https://vk.com/topic-230870556_53778675
https://vk.com/topic-230870556_53778689
https://vk.com/topic-230870556_53778702
https://vk.com/topic-230870556_53778715
https://vk.com/topic-230870556_53778725
https://vk.com/topic-230870556_53778736
https://vk.com/topic-230870556_53778744
https://vk.com/topic-230870556_53778762
https://vk.com/topic-230870556_53778772
https://vk.com/topic-230870556_53778792
https://vk.com/topic-230870556_53778799
https://vk.com/topic-230870556_53778809
https://vk.com/topic-230870556_53778816
https://vk.com/topic-230870556_53778822
https://vk.com/topic-230870556_53778830
https://vk.com/topic-230870556_53778841
https://vk.com/topic-230870556_53778859
https://vk.com/topic-230870556_53778872
https://vk.com/topic-230870556_53778885
https://vk.com/topic-230870556_53778900
https://vk.com/topic-230870556_53778912
https://vk.com/topic-230870556_53778920
https://vk.com/topic-231169012_54248950
https://vk.com/topic-231169012_54248966
https://vk.com/topic-231169012_54249018
https://vk.com/topic-231169012_54249048
https://vk.com/topic-231169012_54249071
https://vk.com/topic-231169012_54249121
https://vk.com/topic-231169012_54249241
https://vk.com/topic-231169012_54249286
https://vk.com/topic-231169012_54249326
https://vk.com/topic-231169012_54249362
https://vk.com/topic-231169012_54249404
https://vk.com/topic-231169012_54249440
https://vk.com/topic-231169012_54249492
https://vk.com/topic-231169012_54249533
https://vk.com/topic-231169012_54249574
https://vk.com/topic-231169012_54249606
https://vk.com/topic-231169012_54249634
https://vk.com/topic-231169012_54249668
https://vk.com/topic-231169012_54249689
https://vk.com/topic-231169012_54249735
https://vk.com/topic-231169012_54249750
https://vk.com/topic-231169012_54249776
https://vk.com/topic-231169012_54249806
https://vk.com/topic-231169012_54249831
https://vk.com/topic-231169012_54249869
https://vk.com/topic-231169012_54249928
https://vk.com/topic-231169012_54249965
https://vk.com/topic-231169012_54250016
https://vk.com/topic-231169012_54250072
https://vk.com/topic-231169012_54250107
https://vk.com/topic-231169012_54250175
https://vk.com/topic-231169012_54250282
https://vk.com/topic-231169012_54250370
https://vk.com/topic-231169012_54250431
https://vk.com/topic-231169012_54250465
https://vk.com/topic-231169012_54250519
https://vk.com/topic-231169012_54250550
https://vk.com/topic-231169012_54250563
https://vk.com/topic-231169012_54250581
https://vk.com/topic-231169012_54250604
https://vk.com/topic-231169012_54250618
https://vk.com/topic-231169012_54250642
https://vk.com/topic-231169012_54250692
https://vk.com/topic-231169012_54250716
https://vk.com/topic-231169012_54250755
https://vk.com/topic-231169012_54250781
https://vk.com/topic-231169012_54250824
https://vk.com/topic-231169012_54250854
https://vk.com/topic-231169012_54250886
https://vk.com/topic-231169012_54250913
https://vk.com/topic-231169012_54250978
https://vk.com/topic-231169012_54251008
https://vk.com/topic-231169012_54251043
https://vk.com/topic-231169012_54251071
https://vk.com/topic-231169012_54251168
https://vk.com/topic-231169012_54251249
https://vk.com/topic-231169012_54251273
https://vk.com/topic-231169012_54251298
https://vk.com/topic-231169012_54251316
https://vk.com/topic-231169012_54251340
https://vk.com/topic-231169012_54251385
https://vk.com/topic-231169012_54251413
https://vk.com/topic-231169012_54251432
https://vk.com/topic-231169012_54251461
https://vk.com/topic-231169012_54251494
https://vk.com/topic-231169012_54251508
https://vk.com/topic-231169012_54251521
https://vk.com/topic-231169012_54251544
https://vk.com/topic-231169012_54251582
https://vk.com/topic-231169012_54251594
https://vk.com/topic-231169012_54251628
https://vk.com/topic-231169012_54251701
https://vk.com/topic-231169012_54251719
https://vk.com/topic-231169012_54251735
https://vk.com/topic-231169012_54251752
https://vk.com/topic-231169012_54251772
https://vk.com/topic-231169012_54251798
https://vk.com/topic-231169012_54251815
https://vk.com/topic-231169012_54251830
https://vk.com/topic-231169012_54251850
https://vk.com/topic-231169012_54251872
https://vk.com/topic-231169012_54251905
https://vk.com/topic-231169012_54251923
https://vk.com/topic-231169012_54251941
https://vk.com/topic-231169012_54251974
https://vk.com/topic-231169012_54252022
https://vk.com/topic-231169012_54252037
https://vk.com/topic-231169012_54252054
https://vk.com/topic-231169012_54252080
https://vk.com/topic-231169012_54252104
https://vk.com/topic-231169012_54252129
https://vk.com/topic-231169012_54252145
https://vk.com/topic-231169012_54252172
https://vk.com/topic-231169012_54252189
https://vk.com/topic-231169012_54252210
https://vk.com/topic-231169012_54252226
https://vk.com/topic-231169012_54252259
https://vk.com/topic-231169012_54252288
https://vk.com/topic-231169012_54252310
https://vk.com/topic-231169012_54252327
https://vk.com/topic-231169012_54252346
https://vk.com/topic-231169012_54252369
https://vk.com/topic-231169012_54252385
https://vk.com/topic-231169012_54252403
https://vk.com/topic-231169012_54252420
https://vk.com/topic-231169012_54252449
https://vk.com/topic-231169012_54252449
https://vk.com/topic-231169012_54252500
32
33
classMyTest {
privateval foo = object {
fun method() {
println("private")
}
}
val foo2 = object {
fun method() {
println("public")
}
}
fun m() = object {
fun method(){
println("method")
}
}
fun invoke(){
val local = object {
fun method(){
println("local")
}
}
local.method() //编译通过
foo.method() //编译通过
foo2.method() //编译通不过
m().method() //编译通不过
}
}
5) 关于在匿名对象中访问同一作用下定义的局部变量的问题:
在Java中,如果在匿名内部类中访问外部定义的局部变量,那么该局部变量必须使用final关键字进行修饰,至于为什么大家可以看我之前的一篇博文。而在Kotlin中,这条限制没有了,看下面的例子:
1
2
3
4
5
6
7
8
var a = 1
val obj = object {
fun method() {
a++
}
}
obj.method()
println(a) //打印出2
再来解释一下:在Java中,实际上在method方法中使用的a实际上是局部变量a的一份拷贝,而不是它本身。而在Kotlin最终也是要编译成字节码供JVM去执行,所以本质上它是不会违背这一点的。那么它是怎么处理的呢?
当你访问的局部变量是val时,那么也是很Java一样,持有的是一份拷贝;而当你是一个可变变量(var)时,它的值是被存储在Ref这个类的实例成员中,Ref变量是final的,而他其中的成员变量是可以改变的。反编译后是可以看到Ref的身影的。
这里还有段有点意思的代码,给大家贴出:
1
2
3
4
5
6
7
8
9
fun tryToCountButtonClicks(button: Button): Int{
var clicks = 0
button.setOnClickListener{
clicks++
}
returnclicks
}
button是个按钮,这段代码的本意上是想要统计Button被点击的次数。但是这个函数的返回值始终是0,哪怕你点击再多次。因为你对局部变量clicks值得修改是异步的,而此函数的返回值是在执行时就确定了的,就是你的值还没有被修改,函数已经返回了。如果真的想统计点击次数,可以将clicks定义成类的成员变量。
4. 对比object declaration、Companion object以及object expression的初始化时机:
a. object declaration:当第一次访问它时才初始化,是一种懒初始化
b. Companion object:当它对应的类被加载后,它才初始化,类似Java中的静态代码块
c. object expression:一旦它被执行,立马初始化
至此,关于Kotlin中的object关键字的使用就介绍完了,希望大家能有所收获~
总结
到此这篇关于kotlin中object关键字的三种使用场景的文章就介绍到这了