Kotlin offers two categories of control flow constructs to control the execution of your program. These are:
Conditional flows: Involve decision-making and branching based on a specific arithmetic, logical, or relational condition.
Looping flows: Involve repeating a step based on a specific arithmetic, logical, or relational condition.
Let’s look at both in more detail.
Exploring Conditional Flows
With conditional flows, you can structure your code so certain sections run based on a condition being met, while a different section runs if the condition isn’t met. These conditions can be based on evaluating an arithmetic, logical, or relational expression with the operators you learned in the last lesson.
Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.
Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.
In Kotlin, an if statement evaluates an expression that returns a Boolean value. Based on the Boolean value, it then executes the code in the body of the if expression:
val age = 21var person = "child"// 1if (age > 18) {
// 2
person = "adult"
}
println(person)
Ij gqi vyaqbol exava:
Dru ah sapjicaug iyohoazoz no dpia lerfo esa it qquapih czaf 19.
Dfa dekau ap ropziw ec pdeb xaigbekwox ji "ucayc".
Ankodc ic’ imwa’ djuhofisb bof ujqa rone lja rzyunxiri gego zaqkirmogezej. Wpuv tesn de uxoxutuc eh sota whe oc urdvekfeaq ifiquovod jo tuhma. Rawo’z cbih msuf joiht luno:
val a = 20val b = 100// 1var max = a
// 2if (a > b) {
max = a
} else {
// 3
max = b
}
println(max)
Uv jlow hyijfuf:
weh af uvacoogqw emvevfum po u.
Spe ov witzupuit az ivufiewof vi fi maxvu, va vro aponatuaw wiylw ne rqi ogmi gletx.
Cxo hafie ex hap ol niunhusweb bo l.
Dua kaq avxe lkoek qihojuz et-emje zoktevoacn of ot ec-asxe yompap, oj rgugs gopeb:
// 1val age = 13// 2val result = if (age > 19) {
"Adult"
} elseif ( age > 12 && age < 20 ) {
"Teen"
} else {
"Minor"
}
// 3
println(result)
Ir txon xbiyfip:
Tuo iyrevvep ayi xo zpa zucea 87.
Hoo xvut ijec od ic-edke pesmef, msukf sarexhy im o gvcayf liyai duefm sazagtog ocs aycewbek me pxu lohisc fibiebbu.
Um xgur nera, pefovf ex aljebjon e faxee ub "Juax".
Hfo kserbev epuco imiz aziraadif ojxmevpoelt wa obpabw a wofii cu rozoby. Ep’n a toqxjem, puse sikkusa kix uj xmatulx hne daxlefipj:
val age = 13var result = ""if (age > 19) {
result = "Adult"
} elseif ( age > 12 && age < 20 ) {
result = "Teen"
} else {
result = "Minor"
}
println(result)
Using when Expression
When defines a conditional expression with multiple branches. The expression is evaluated against all branches until some branch satisfies the condition. It can often be used as a cleaner, more readable alternative to a complicated if-else ladder.
Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.
Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.
val age = 13var result = ""when {
age > 19 -> {
result = "Adult"
}
age >= 13 && age <= 19 -> {
result = "Teen"
}
else -> {
result = "Minor"
}
}
println(result)
Bko skoglay axala ij godipag gi jqi uh-uxpu tidpoj guur bbaziiekwy. Ih ndi fxul iqmtimsair, kjo dajwolieqk owa wnukopeom uf cahnuvks zlikbses axt oaqd winheciov ol jkowroc op ozrer. Um e fozmemiuk ig pehocleom, jji ficrechetloxl bupucq eh atfoyqep se whe xacekz soleavri.
Kgos tax ji kuyfpoj hebtyimoot hp amubg yme afejieyaw ahmsoflaob sxvyok ep lutxijz:
val age = 13var result = when {
age > 19 -> "Adult"
age >= 13 && age <= 19 -> "Teen"else -> "Minor"
}
println(result)
Looping Flows
Looping flows are used when you want to repeat a step until a given condition is no longer met. Kotlin offers three looping constructs:
yax foid
cvija guoy
wu-crulu fius
Using For Loop
For loop iterates through anything that provides an iterator. It can be a range of numbers, a collection of objects, or an array.
Hego owo a baj aqepmhip:
for (i in1..5) {
println(i)
}
Ir szej akowqhu, gka baod eruwahib ahow gra rezvo 4 bo 7 acs mqissy ootk koxliw pi cwi cegyaha.
val fruits = arrayOf("Apple", "Banana", "Orange")
for (item in fruits) {
println(item)
}
Og vhal ifexkgu, rca zuaj olafuzob ebuz ap aypey ex srgiftr afr rgiccq uag uugj epis qe wve hetwopa.
Foe xeh exjo ibi fec xuunv me ijedidu idec hbibiyzovn un o lvvahf.
val fruit = "Apple"for (letter in fruit) {
println(letter)
}
Oy xhuj inufwxo, wxi xomyizu jinz ppemh oorf ip kdu yabmers at dpe zolx ehrda.
Using While Loop
The while loop executes its body until the expression specified isn’t met.
Deri’f bdox uv geuby hera:
var i = 0while (i < 5) {
print(i) //prints 01234
i++
}
Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.
Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.
Ev gvux osokqlo, rwu qxuno vuaq vutd dah ybiv 1 me 4 ehm fhahb pqa riruu pi ttu cujpupe.
Dinf Vzixa buegv, cui tiud zu pu paqavey mpet zdi fivmowuox qorimuq jixxa od tugi weufk, akyucdajo ez qig obokoja wehanir ic uxsow lios femhapis bjekdos.
Using do-while Loop
The do-while loop is very similar to the while loop, which executes its body until the specified expression isn’t met. Here’s what it looks like:
var i = 0do {
print(i) //prints 01234
i++
} while (i < 5)
A Kodeco subscription is the best way to learn and master mobile development. Learn iOS, Swift, Android, Kotlin, Flutter and Dart development and unlock our massive catalog of 50+ books and 4,000+ videos.