1
Reply

What is a parameterized type?

Jul 13, 2006
7.4k
0

    A template is a parameterized construct or type containing generic code that can use or manipulate any type. It is called parameterized because an actual type is a parameter of the code body. Polymorphism may be achieved through parameterized types. This type of polymorphism is called parameteric polymorphism. Parameteric polymorphism is the mechanism by which the same code is used on different types passed as parameters..

    Nipun Tomar
    July 13, 2006
    0