Open In App

Swift – Fallthrough Statement

Last Updated : 11 Jan, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Just like other languages in Swift also switch statement is very useful and powerful. It takes a value and then compare it with several possible matching pattern or we can say cases and stops its execution when it successfully found its first matching case statement and then execute the code present in the matched statement. It optimise code by avoiding the repetitive use of if-else statements. In Swift, the switch statement does not fall through the bottom of each case statement. Instead, the switch statement finish its execution when it encounter its first matching case without any explicit break statement. It makes switch statement more safer and easier to use and avoid executing more than one case statement by mistake. 

If you want your switch statement fall through or you want C style fallthrough feature then you can use fallthrough statement. This statement is used to forcefully execute the case present next after the matched statement even though the case is not matching the specified condition. Remember it only execute one case statement that present after the matched statement not all the case statements unless the fallthrough statement is used after all the case statements. 

Syntax:

switch condition{

case pattern1:

statements

fallthrough

case pattern2:

statements

default:

statements

}

Example 1:

In this example, we will first see how the normal switch statement works.

Swift




// Swift program to illustrate the
// the switch statement
import Foundation
import Glibc
 
// Creating and initializing variable
var choice = 2
 
// Switch statement
switch(choice) {
case 1:
print("Hi! its Monday")
case 2:
print("Hi! its Tuesday")
case 3:
print("Hi! its Wednesday")
case 4:
print("Hi! its Thursday")
case 5:
print("Hi! its Friday")
case 6:
print("Hi! its Saturday")
case 7:
print("Hi! its Sunday")
default:
print("Choice not found")
}


Output:

Hi! its Tuesday

Here, we enter condition in the switch statement that is “choice = 2”. Now the switch statement compare the condition with each switch statement one by one and the match found in the second case so it display “Hi! its Tuesday”  and stop its execution.

Now we use the same code to see how the fallthrough statement works. 

Swift




// Swift program to illustrate the
// working of fallthrough statement
import Foundation
import Glibc
 
// Creating and initializing variable
var choice = 2
 
// Switch statement
switch(choice) {
case 1:
print("Hi! its Monday")
case 2:
print("Hi! its Tuesday")
fallthrough
case 3:
print("Hi! its Wednesday")
case 4:
print("Hi! its Thursday")
case 5:
print("Hi! its Friday")
case 6:
print("Hi! its Saturday")
case 7:
print("Hi! its Sunday")
default:
print("Choice not found")
}


Output:

Hi! its Tuesday
Hi! its Wednesday

Here, the switch statement(i.e. choice = 2) found its match on case 2, i.e., “Hi! its Tuesday” but it also display “Hi! its Wednesday” after “Hi! its Tuesday” because a fallthrough statement is used just after the statement of case 2. Due to fallthrough statement the case 3 is forcefully executed. 

Example 2:

Swift




// Swift program to illustrate the
// working of fallthrough statement
import Foundation
import Glibc
 
// Creating and initializing variable
var choice = "Three"
 
// Switch statement
switch(choice) {
case "One":
print("Your today day is going to be good")
fallthrough
case "Two":
print("Your today day is going to be bad")
fallthrough
case "Three":
print("Your today day is going to be very bad")
fallthrough
case "Four":
print("Your today day is going to be ok")
fallthrough
case "Five":
print("Your today day is going to be full of up and downs")
fallthrough
default:
print("Choice not found")
}


Output:

Your today day is going to be very bad
Your today day is going to be ok
Your today day is going to be full of up and downs
Choice not found

Explanation: In this example, we pass the “choice = “Three” condition in the switch statement and we put fallthrough statement after every case statement. So when the switch case found the matching case that is case ” Three” then the case “Three” statement and the cases present after case “Three” will execute due to fallthrough statement.



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads