answersLogoWhite

0

This is a term from Object Oriented Programming. It refers to the ability of a function or procedure to accept and correctly process parameters of different Types declared in different Classes. It requires an ability to perform what is called runtime dispatching to call the correct actual function or procedure declared within the matching Class, out of all possible Classes.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is polymorphism and its types?

Polymorphism means multiple form of a function, variable or object. In Computer Science, polymorphism is a programming language feature that allows values of different data types to be handles using a common interface. There are three types : Ad-Hoc Polymosphism, Parametric Polymorphism, Subtype/Inclusion Polymorphism. Source: Wikipedia.


What is the different between polymorphism and dynamic binding?

In computer science, polymorphism refers to a computer language's ability to process objects according to their data type. Dynamic binding on the other hand, is a mechanism wherein the method used on an object is being looked up by name at runtime.


Polymorphism in coelentrates?

polymorphism in coelentrates


How is it that polymorphism enables you to program in the general rather than in the specific' discuss the key advantages of the programming in the general?

Polymorphism enables the programmer to concentrate on the processing of commonoperations that are applied to all data types in the system without going into the individualdetails of each data type. The general processing capabilities are separated from the internaldetails of each type.


Are there any vntrs trends in the general population?

In 293 nuclear families, we genotyped the INS VNTR polymorphism in 431 children and adolescents (8 to 18 years of age) and their parents. Overweight was defined according to the international definition in both children and adults.


What is Dynamic Polymorphism?

Dynamic polymorphism is a programming method that makes objects with the same name behave differently in different situations. This type of programming is used to allow Java Scripts to run while playing a game on the computer, for example.


What is the classification of polymorphic?

Polymorphic can refer to different things depending on the context. In computer science, polymorphism is a programming concept that allows objects to be treated as instances of their parent class. In biology, polymorphism refers to the existence of multiple forms of a gene within a population.


What is the definition of ploters of computer?

What is the definition of faxes


Definition of computer aided drug design?

Definition of computer aided drug design?


What kind of drugs commonly has polymorphism?

Polymorphism is common with barbiturates, steroids, and sulphonamides.


Is polymorphism exist between prokaryotes?

Yes, polymorphism exists between the prokaryotes.


What is a polymorphs?

In computer science, polymorphism means allowing a single definition to be used with different types of data (specifically, different classes of objects). For instance, a polymorphic function definition can replace several type-specific ones, and a single polymorphic operator can act in expressions of various types. Many programming languages and paradigms implement some forms of polymorphism; for a popular example, see polymorphism in object-oriented programming. The concept of polymorphism applies to data types in addition to functions. A function that can evaluate to and be applied to values of different types is known as a polymorphic function. A data type that contains elements of different types is known as a polymorphic data type. There are two fundamentally different kinds of polymorphism, as first informally described by Christopher Strachey in 1967. If the range of actual types that can be used is finite and the combinations must be specified individually prior to use, it is called ad-hoc polymorphism. If all code is written without mention of any specific type and thus can be used transparently with any number of new types, it is called parametric polymorphism. In their formal treatment of the topic in 1985, Luca Cardelli and Peter Wegner later restricted the term parametric polymorphism to instances with type parameters, recognizing also other kinds of universal polymorphism. Programming using parametric polymorphism is called generic programming, particularly in the object-oriented community. Advocates of object-oriented programming often cite polymorphism as one of the major benefits of that paradigm over others. Advocates of functional programming reject this claim on the grounds that the notion of parametric polymorphism is so deeply ingrained in many statically typed functional programming languages that most programmers simply take it for granted. However, the rise in popularity of object-oriented programming languages did contribute greatly to awareness and use of polymorphism in the mainstream programming community.