首页 > 其他 > 详细

【转载】A Generic Class is a Template for a Class

时间:2014-03-11 22:17:29      阅读:467      评论:0      收藏:0      [点我收藏+]

A generic classs 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.

bubuko.com,布布扣
1 public class ThingContainer<TParam>
2 {
3   private TParam theThing;
4 
5   public void SetThing(TParam newValue)
6   {
7     theThing = newValue;
8   }
9 }
bubuko.com,布布扣

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

1 ThingContainer<int> intContainer = new ThingContainer<int>();
2 intContainer.SetThing(5);
3 
4 ThingContainer<Dog> dogContainer = new ThingContainer<Dog>();
5 dogContainer.SetThing(new Dog("Kirby", 5));

In this example, we use a generic class to store an object of an arbitary 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.

【转载】A Generic Class is a Template for a Class,布布扣,bubuko.com

【转载】A Generic Class is a Template for a Class

原文:http://www.cnblogs.com/yuthreestone/p/3593422.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!