ЮП
я читал)
Size: a a a
ЮП
AN
I
IO
IO
AM
AM
IO
AM
IO
AM
QH
IO
AM
I
I
IO
I
s
fun main() {
println("Hello, world!!!")
var a = 3
var b = 5
var c = 0
c = a.apply { a to c}
b = a.also { a to b }
print("$a $b $c")
}
AL
fun main() {
println("Hello, world!!!")
var a = 3
var b = 5
var c = 0
c = a.apply { a to c}
b = a.also { a to b }
print("$a $b $c")
}
a
in your case)this
) will be in apply
lambda scope and usual parameter (implicitly can be called as it
) will be in also
lambda.apply
usually used to change object itself if that not possible in the constructor. Bad and outdated example is:val list = mutableListOf<Int>().apply {
add(1) //can be this.add(1)
add(2)
}
also
is usually used to do something with object (store it, print it, etc):val something = foo().also { println(it) }