Polymorphism

Unknown | 12:59 AM |

The word “polymorphism” means “different forms”. Applied in object-oriented
paradigm it means the ability of an entity to exhibit different forms at runtime.
However, why would such a kind of feature be required? One major reason to
have this is to eliminate the type inspection. As we can see in the earlier case
study that we discussed there would also be a type inspection checking at the
client application level where in the employee entities would be used. So just as
in every functionality, we had checked for the type of employee we will also have
to check in the main function about the type of employee we are handling. With
polymorphism, we can have this level of type inspection also being eradicated
totally.

Category:

About http://dotnetvisual.blogspot.in/:
DOT NET TO ASP.NET is a web application framework marketed by Microsoft that programmers can use to build dynamic web sites, web applications and web services. It is part of Microsoft's .NET platform and is the successor to Microsoft's Active Server Pages (ASP) technology. ASP.NET is built on the Common Language Runtime, allowing programmers to write ASP.NET code using any Microsoft .NET language. create an application very easily ....