首页 > 开发 > 综合 > 正文

C# 3.0新特性初步研究 Part2:使用扩展方法

2024-07-21 02:28:59
字体:
来源:转载
供稿:网友

扩展方法(extension method)
可以为已有的类型添加新的方法定义和实现,比如int类型目前没有一个名叫xxxyyy()的方法,
那么通过使用扩展方法,我们可以为int类型添加一个xxxyyy()方法。
这个有点类似于用来扩展系统功能的某些设计模式。

下面我们用代码来说话:
这是我们以前的写法:

   1public static class extensions
 2{
 3    public static string camelcase(string identifier)
 4{
 5            string newstring = "";
 6            bool sawunderscore = false;
 7
 8            foreach (char c in identifier)
 9            {
10                if ((newstring.length == 0) && char.isletter(c))
11                    newstring += char.toupper(c);
12                else if (c == '_')
13                    sawunderscore = true;
14                else if (sawunderscore)
15                {
16                        newstring += char.toupper(c);
17                        sawunderscore = false;
18                }
19                else
20                        newstring += c;
21        }
22
23            return newstring;
24}           
25}
26
27static void main(string[] args)
28{
29string[] identifiers = new string[] {
30         "do_something",
31         "find_all_objects",
32          "get_last_dict_entry"
33         };
34
35foreach (string s in identifiers)
36     console.writeline("{0} becomes: {1}", s, extensions.camelcase(s));
37}
38
c# 3.0中我们可以这样写:
 1public static class extensions
 2{
 3    public static string camelcase(this string identifier)
 4{
 5            string newstring = "";
 6            bool sawunderscore = false;
 7
 8            foreach (char c in identifier)
 9            {
10                if ((newstring.length == 0) && char.isletter(c))
11                    newstring += char.toupper(c);
12                else if (c == '_')
13                    sawunderscore = true;
14                else if (sawunderscore)
15                {
16                        newstring += char.toupper(c);
17                        sawunderscore = false;
18                }
19                else
20                        newstring += c;
21        }
22
23            return newstring;
24}           
25}
26
27static void main(string[] args)
28{
29string[] identifiers = new string[] {
30         "do_something",
31         "find_all_objects",
32          "get_last_dict_entry"
33         };
34
35foreach (string s in identifiers)
36     console.writeline("{0} becomes: {1}", s, extensions.camelcase(s));
37}
主要是下面这两个语句的变化:
1public static string camelcase(this string identifier)
2console.writeline("{0} becomes: {1}", s, s.camelcase());
变量s原本是一个string类型,并没有camelcase()方法,但是我们在camelcase()方法的参数列表最前面加上一个this关键字,
则string s就拥有了一个新的方法camelcase,很简单也很直接 :)

下面我们看一看一个稍微复杂一点的应用:
 1public static class extensions
 2{
 3public static list<t> combine<t>(this list<t> a, list<t> b)
 4{
 5    var newlist = new list<t>(a);
 6    newlist.addrange(b);
 7    return newlist;
 8}   
 9}
10
11static void main(string[] args)
12{
13var odds = new list<int>();
14odds.add(1);
15odds.add(3);
16odds.add(5);
17odds.add(7);
18
19var evens = new list<int>();
20evens.add(0);
21evens.add(2);
22evens.add(4);
23evens.add(6);
24
25var both = odds.combine(evens);
26console.writeline("contents of 'both' list:");
27foreach (int i in both)
28     console.writeline(i);
29}

最大的网站源码资源下载站,

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表