Anyone who understands the function of break statement in C# | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 2

Anyone who understands the function of break statement in C#

Ever since I started coding, the break statement had been a huge fail in my codes. Pls anyone who fully understands the function of break statement in C# should leave behind a comment P.S.: I really mean it guys, thanks 👍

4th Nov 2020, 7:12 PM
Owolabi Habeebullah
Owolabi Habeebullah - avatar
4 ответов
+ 3
The `break` keyword is used to immediately terminate from the scope of a loop.
4th Nov 2020, 7:15 PM
Maxwell Anderson
Maxwell Anderson - avatar
+ 1
Here's a good example. This code is purely pseudo and will not compile for (hopefully) obvious reasons public void DoBattle(Player player, Enemy enemy) { while(enemey.health > 0) { player.attack(); if(enemey.health <= 0) { enemey.isDead = true; break; } } Console.WriteLine("Enemy is dead"); } in this example, we are in a battle. Obviously we dont want the battle to prematurely end while the enemy is still alive (boolean isAlive would be a property on the enemy object) So we execute the "Attack" method until the enemy health is less than or equal to 0. If it is less than or equal to 0, isDeas is set to true on the enemy, then we execute "break;" to exit the battle while-loop. Obviously when the loop is broken that must mean the enemy has been defeated, so after the while loop comes the writeline to display the enemy is dead. Hopefully that made sense.
5th Nov 2020, 2:41 PM
Zezima
Zezima - avatar
- 1
It tells the processor to continue with code execution after the loop (or switch statement)
4th Nov 2020, 7:43 PM
Benjamin Jürgens
Benjamin Jürgens - avatar
- 1
Any loop { ... break; //on executing this it just comes 'out of loop' means it breaks or stops the loop execution further... } *out of loop..
4th Nov 2020, 7:59 PM
Jayakrishna 🇮🇳