switch statements in hindi
Introduction
switch statements में switch keyword use करते हुए एक condition pass की जाती है और नीचे के cases दिए हुए होते हैं |
switch statement एक multi-way branch statement है।
जिस case से condition match कर जाती है वहीं case execute हो जाते हैं जैसे कि अनेक variable की value 3 है तो तीसरे case के statements execute होंगे।
कभी ऐसा भी हो सकता है कि आपका कोई भी case condition से match नहीं कर रहा तो ऐसी situation में default case execute होता
है।
Rules of switch statements :-
switch case Duplicate case values की अनुमति नहीं है।
किसी मामले का मान स्विच में परिवर्तनशील चर के समान डेटा प्रकार का होना चाहिए।
break statement का उपयोग switch के अंदर statement sequence को terminate करने के लिए किया जाता है।
syntax for switch case
switch (expression)
{
case 1:
{
statements;
}
break;
case 2:
{
statements;
}
break;
}
program
class Day
{
public static void main(string args[])
{
switch (2)
{
case 1:
{
system.out.println(“monday”);
break;
}
case 2:
{
system.out.println(“sunday”);
break;
}
}
}
Advantages
- switch statements यह if-else की तुलना में पढ़ने में आसान है |
- Debug करना और maintain रखना आसान है
- fast executionकरता है।