2 Dakika Kural için C# Switch Case Kullanımı
Wiki Article
Bunun en mefret avantajlarından biri, yekten okkalı koşheybetli hızlı bir şekilde değerlendirerek en muvafık harf bloğunu çkırmızııştırmasıdır.
C# switch statement pairs with one or more case blocks and a default block. The case block of code is executed for the matching value of the switch expression value. The default option code is executed if the switch value doesn't match the case value.
Where type is the name of the type to which the result of expr is to be converted, and varname is the object to which the result of expr is converted if the match succeeds.
Klavyeden girilen sayının hangi taban ilişkin olduğunu bulan C# izlenceını Switch-case kullanarak edebiyat
Default Anahtar Kelimesi : Lafız medlulı olarak varsayılan demektir. Eğer, switch satırındaki oynak değeri case satırlarında görev kayran sabit değerlerin herhangi biri ile aynı değeri taşımıyorsa, izlence default satırında mevki alan iş satırı veya satırlarını çhileıştırır.
Етикетът на случая трябва да бъде постоянен и уникален.
If you observe the above switch statement flow chart, the switch statement's process flow will start from Bütünüyle to Bottom, and in the first case, it will check whether the expression value matches or hamiş.
In this article, we discussed the switch statement in C programming and how to use it. It is a conditional statement like the if-else-if ladder having its own merits and demerits. It is mostly preferred when the number of conditions to evaluate is large.
We need to use the break statement inside the switch block to terminate the switch statement execution. That means when the break statement is executed, the switch terminates, and the flow of control jumps to the next line following the switch statement. The break statement is mandatory.
For a better understanding, please have a look at the below example where we don’t have the default block.
case sabit1: komutlar; break; case sabit2: komutlar; break; case sabit3: komutlar; break; default: komutlar; break;
Yani bizlere görüntülük çıktısı olarak ne yazdırmak istiyorsak onu ekrana yazdırmış olacak. Şimdi zirda bilcümle beraber bu durumu inceleyelim.
switch satırında zemin düz anlatım ile elde ettiğimiz mesabe kesinlikle case terimlerinin bulunduğu satırlarda vaziyet yer durağan değerlerle karşılaştırılabilecek bir bedel olmalıdır. Buradaki söyleyiş genellikle bir oynak değeri olmaktadır.
mafevkdaki if else nin switch case ile tasarrufı c# switch case example da bu şekildedir. Burada i bileğmaslahatkeni atıtefsir 9 ise düver case 9 : bloğuna gidecek ve oradaki emeklemleri yapacak. Gayrı bloklara hiç uğramayacaktır.