Swift program to implement function overloading based on argument label

Here, we are going to learn how to implement function overloading based on argument label in Swift programming language?
Submitted by Nidhi, on July 04, 2021

Problem Solution:

Here, we will create two functions with the same name but different argument labels to implement function overloading.

Program/Source Code:

The source code to implement function overloading based on the argument label is given below. The given program is compiled and executed successfully.

// Swift program to implement function overloading 
// based on argument label

import Swift

func printNum(n1:Int){
    print("@@@Function called@@@")
    print(n1)
}

func printNum(n2:Int){
    print("###Function called###")
    print(n2)
}

printNum(n1:10)
printNum(n2:20)

Output:

@@@Function called@@@
10
###Function called###
20

...Program finished with exit code 0
Press ENTER to exit console.

Explanation:

In the above program, we imported a package Swift to use the print() function using the below statement,

import Swift

Here, we created two printNum() functions with different argument labels to implement function overloading. Then we called both functions with some values and printed the result on the console screen.

Swift Function Overloading Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.