码迷,mamicode.com
首页 > 其他好文 > 详细

default of c#

时间:2014-08-30 16:20:29      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   使用   strong   ar   div   

default of c#

 在泛型类和泛型方法中产生的一个问题是,在预先未知以下情况时,如何将默认值分配给参数化类型 T:

  • T 是引用类型还是值类型。

  • 如果 T 为值类型,则它是数值还是结构。

  给定参数化类型 T 的一个变量 t,只有当 T 为引用类型时,语句 t = null 才有效;只有当 T 为数值类型而不是结构时,语句 t = 0 才能正常使用。解决方案是使用default 关键字,此关键字对于引用类型会返回 null,对于数值类型会返回零对于结构,此关键字将返回初始化为零或 null 的每个结构成员,具体取决于这些结构是值类型还是引用类型。以下来自 GenericList<T> 类的示例显示了如何使用 default 关键字。

  

 1 public class GenericList<T>
 2 {
 3     private class Node
 4     {
 5         //...
 6 
 7         public Node Next;
 8         public T Data;
 9     }
10 
11     private Node head;
12 
13     //...
14 
15     public T GetNext()
16     {
17         T temp = default(T);
18 
19         Node current = head;
20         if (current != null)
21         {
22             temp = current.Data;
23             current = current.Next;
24         }
25         return temp;
26     }
27 }

参考:http://msdn.microsoft.com/zh-cn/library/xwth0h0d(v=vs.90).aspx

default of c#

标签:style   blog   http   color   os   使用   strong   ar   div   

原文地址:http://www.cnblogs.com/tekkaman/p/3946457.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!