Method (computer Science) - Overloaded Methods

Overloaded methods are those that appear to have the same name, but that have different formal parameter types (or result value type, if the language supports overloading on result type). The "real name" of the method is made up by concatenating the identifier used to name the method with an encoding of the types, so this works only for languages in which the types are statically known. Overloading is generally confusing; it is better practice to simply come up with more meaningful names for ones methods, that is, names that explain the role of the parameters. For example in the following C++, class geometry have two method named "area". But their parameter list is different which distinguish the methods. Many other languages provide this feature.

#include class geometry { public: static double area(double h, double w) { return h * w; } static double area(double r) { return r * r * 3.14; } }; int main { double rectangle_area = geometry::area(3, 4); double circle_area = geometry::area(5); std::cout << rectangle_area << '\n'; std::cout << circle_area << '\n'; }

Read more about this topic:  Method (computer Science)

Famous quotes containing the words overloaded and/or methods:

    At bottom there is in Joyce a profound hatred for humanity—the scholar’s hatred. One realizes that he has the neurotic’s fear of entering the living world, the world of men and women in which he is powerless to function. He is in revolt not against institutions, but against mankind.... Ulysses is like a vomit spilled by a delicate child whose stomach has been overloaded with sweetmeats.
    Henry Miller (1891–1980)

    A woman might claim to retain some of the child’s faculties, although very limited and defused, simply because she has not been encouraged to learn methods of thought and develop a disciplined mind. As long as education remains largely induction ignorance will retain these advantages over learning and it is time that women impudently put them to work.
    Germaine Greer (b. 1939)