Kotlin for Android Developers



Download 1,04 Mb.
Pdf ko'rish
bet99/125
Sana11.08.2021
Hajmi1,04 Mb.
#144654
1   ...   95   96   97   98   99   100   101   102   ...   125
Bog'liq
Kotlin for Android Developers Learn Kotlin the Easy Way While Developing an Android App ( PDFDrive )

22.2 When expression
When
expressions are similar to
switch/case
in Java, but far more powerful. This expression will try
to match its argument against all possible branches in order until it finds one that is satisfied. It will
then apply the right side of the expression. The difference with a
switch/case
in Java is that the
argument can be literally anything, and the conditions for the branches too.
For the default option, we can add an
else
branch that will be executed if none of the previous
conditions is satisfied. The code executed when a condition is satisfied can be a block too:
1
when (x) {
2
1 -> print("x == 1")
3
2 -> print("x == 2")
4
else -> {
5
print("I'm a block")
6
print("x is neither 1 nor 2")
7
}
8
}
As it’s an expression, it can return a result too. Take into consideration that when used as an
expression, it must cover all the possible cases or implement the
else
branch. It won’t compile
otherwise:
1
val result = when (x) {
2
0, 1 -> "binary"
3
else -> "error"
4
}
As you can see, the condition can be a set of values separated with commas. But it can be many
more things. We could, for instance, check the type of the argument and take decisions based on
this:
1
when(view) {
2
is TextView -> view.setText("I'm a TextView")
3
is EditText -> toast("EditText value: ${view.getText()}")
4
is ViewGroup -> toast("Number of children: ${view.getChildCount()} ")
5
else -> view.visibility = View.GONE
6
}
The argument is automatically casted in the right part of the condition, so you don’t need to do any
explicit casting.
It’s possible to check whether the argument is inside a range (I’ll explain ranges later in this chapter),
or even inside a collection:


22. Flow control and ranges
100
1
val cost = when(x) {
2
in 1..10 -> "cheap"
3
in 10..100 -> "regular"
4
in 100..1000 -> "expensive"
5
in specialValues -> "special value!"
6
else -> "not rated"
7
}
Or you could even get rid of the argument and do any crazy check you may need. It could easily
substitute an
if / else
chain:
1
val res = when {
2
x in 1..10 -> "cheap"
3
s.contains("hello") -> "it's a welcome!"
4
v is ViewGroup -> "child count: ${v.getChildCount()}"
5
else -> ""
6
}
22.3 For loops
Though you won’t probably use them too much if you make use of functional operators in
collections,
for
loops can be useful in some situations, so they are still available. It works with
anything that provides an iterator:
1
for (item in collection) {
2
print(item)
3
}
If we want to get a more typical iteration over indices, we can also do it using ranges (there are
usually smarter solutions anyway):
1
for (index in 0..viewGroup.getChildCount() - 1) {
2
val view = viewGroup.getChildAt(index)
3
view.visibility = View.VISIBLE
4
}
When iterating over an array or a list, a set of indices can be requested to the object, so the previous
artifact is not necessary:


22. Flow control and ranges
101
1
for (i in array.indices)
2
print(array[i])

Download 1,04 Mb.

Do'stlaringiz bilan baham:
1   ...   95   96   97   98   99   100   101   102   ...   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