Overloaded Expression

Overloaded Expression

Function overloading or method overloading is a feature found in various programming languages such as Ada, C++, C#, D, and Java, that allows creating several methods with the same name which differ from each other in the type of the input and the output of the function. It is simply defined as the ability of one function to perform different tasks.

For example, doTask and doTask(object O) are overloaded methods. To call the latter, an object must be passed as a parameter, whereas the former does not require a parameter, and is called with an empty parameter field. A common error would be to assign a default value to the object in the second method, which would result in an ambiguous call error, as the compiler wouldn't know which of the two methods to use.

Another appropriate example would be a Print(object O) method. In this case one might like the method to be different when printing, for example, text or pictures. The two different methods may be overloaded as Print(text_object T); Print(image_object P). If we write the overloaded print methods for all objects our program will "print", we never have to worry about the type of the object, and the correct function call again, the call is always: Print(something).

Read more about Overloaded Expression:  Rules in Function Overloading, Constructor Overloading, Caveats

Famous quotes containing the words overloaded and/or expression:

    “Play,” the useless, as the ideal of one who is overloaded with strength, as “childlike.” The “childlikeness” of god, pais paizon.
    Friedrich Nietzsche (1844–1900)

    But the wise know that foolish legislation is a rope of sand, which perishes in the twisting; that the State must follow, and not lead the character and progress of the citizen; the strongest usurper is quickly got rid of; and they only who build on Ideas, build for eternity; and that the form of government which prevails, is the expression of what cultivation exists in the population which permits it.
    Ralph Waldo Emerson (1803–1882)