Kotlin for Android Developers



Download 1,04 Mb.
Pdf ko'rish
bet55/125
Sana11.08.2021
Hajmi1,04 Mb.
#144654
1   ...   51   52   53   54   55   56   57   58   ...   125
Bog'liq
Kotlin for Android Developers Learn Kotlin the Easy Way While Developing an Android App ( PDFDrive )

Unary operations
+a
a.unaryPlus()
-a
a.unaryMinus()
!a
a.not()
a++
a.inc()
a–
a.dec()
Binary operations
a + b
a.plus(b)
a - b
a.minus(b)
a * b
a.times(b)
a / b
a.div(b)
a % b
a.mod(b)
a..b
a.rangeTo(b)
a in b
b.contains(a)
a !in b
!b.contains(a)
a += b
a.plusAssign(b)
a -= b
a.minusAssign(b)
a *= b
a.timesAssign(b)
a /= b
a.divAssign(b)
a %= b
a.modAssign(b)
38


11 Operator overloading
39
Array-like operations
a[i]
a.get(i)
a[i, j]
a.get(i, j)
a[i_1, …, i_n]
a.get(i_1, …, i_n)
a[i] = b
a.set(i, b)
a[i, j] = b
a.set(i, j, b)
a[i_1, …, i_n] = b
a.set(i_1, …, i_n, b)
Equals operation
a == b
a?.equals(b) ?: b === null
a != b
!(a?.equals(b) ?: b === null)
The
equals
operations are a bit different, because they use a more complex translation in order to
make a proper equals checking, and because they expect an exact function specification, and not
just a specific name. The function must be implemented exactly like this:
1
operator fun equals(other: Any?): Boolean
Operators
===
and
!==
do identity checks (they are
==
and
!=
in Java respectively) and can’t be
overloaded.
Function invocation
a(i)
a.invoke(i)
a(i, j)
a.invoke(i, j)
a(i_1, …, i_n)
a.invoke(i_1, …, i_n)
11.2 The example
As you can imagine, Kotlin lists have the array-like operations implemented, so we can access to list
items the same way we’d do in Java arrays. But it goes beyond: in mutable lists, the item can also
be set directly in a very simple way:
1
val x = myList[2]
2
myList[2] = 4
If you remember, we have a data class called
ForecastList
, which basically consists of a list with
some extra info. It’d be interesting to access its items directly instead of having to request its internal


11 Operator overloading
40
list to get an item. On a totally unrelated note, I’m also going to implement a
size()
function, which
will simplify the current adapter a little more:
1
data class ForecastList(val city: String, val country: String,
2
val dailyForecast: List) {
3
operator fun get(position: Int): Forecast = dailyForecast[position]
4
fun size(): Int = dailyForecast.size
5
}
It makes our
onBindViewHolder
a bit simpler:
1
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
2
with(weekForecast[position]) {
3
holder.textView.text = "$date - $description - $high/$low"
4
}
5
}
As well as the
getItemCount()
function:
1
override fun getItemCount(): Int = weekForecast.size()

Download 1,04 Mb.

Do'stlaringiz bilan baham:
1   ...   51   52   53   54   55   56   57   58   ...   125




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish