03/04/2006, 15:53
|
| Usuario baneado! | | Fecha de Ingreso: diciembre-2005 Ubicación: México, D.F.
Mensajes: 1.328
Antigüedad: 18 años, 11 meses Puntos: 0 | |
Ay, estos hablan de todo (aunque no hablen para todos) y se creen que los demás sabemos lo mismo. Generics Cita: Generic programming
In computer science, generics is a technique that allows one value to take different datatypes (so-called polymorphism) as long as certain contracts such as subtypes and signature are kept. The programming style emphasizing use of this technique is called generic programming.
For example, if one wanted to create a list using generics, a possible declaration would be to say List<T>, where T represented the type. When instantiated, one could create List<Integer> or List<Animal>. The list is then treated as a list of whichever type is specified.
Among object-oriented languages, C++, D, BETA, Eiffel, Ada, and versions of Java (1.5 and higher) provide generic facilities. VB.NET and C# began providing them with .NET 2.0. Much earlier than in all mentioned languages, generic programming was implemented in CLU. Para los que no lo sabían, como yo.. |