#323 – A Generic Class is a Template for a Class

A generic class is a class that takes one or more type parameters, which it then uses in the definition of the class.  It can be thought of as a template for a class.

    public class ThingContainer<TParam>
    {
        private TParam theThing;

        public void SetThing(TParam newValue)
        {
            theThing = newValue;
        }
    }

You use a generic class by specifying a type for each of the type parameters.

            ThingContainer<int> intContainer = new ThingContainer<int>();
            intContainer.SetThing(5);

            ThingContainer<Dog> dogContainer = new ThingContainer<Dog>();
            dogContainer.SetThing(new Dog("Kirby", 5));

In this example, we use a generic class to store an object of an arbitrary type.  We use one version of the class to store an int and another to store a Dog.  Notice that wherever we use the name of the generic class to define an instance, we need to supply a typename (e.g. int, Dog) as a parameter.

About Sean
Software developer in the Twin Cities area, passionate about .NET technologies. Equally passionate about my own personal projects related to family history and preservation of family stories and photos.

5 Responses to #323 – A Generic Class is a Template for a Class

  1. Pingback: #324 – A Generic Class Can Have More than One Type Parameter « 2,000 Things You Should Know About C#

  2. Pingback: #326 – Generic Type vs. Constructed Type « 2,000 Things You Should Know About C#

  3. Pingback: #534 – What Good Are Generics? « 2,000 Things You Should Know About C#

  4. Pingback: #535 – Creating a Generic Struct « 2,000 Things You Should Know About C#

  5. Pingback: #536 – Using a Generic Interface « 2,000 Things You Should Know About C#

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.

Join 43 other followers