惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
CERT Recently Published Vulnerability Notes
U
Unit 42
T
The Blog of Author Tim Ferriss
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog RSS Feed
Microsoft Azure Blog
Microsoft Azure Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
S
Securelist
L
Lohrmann on Cybersecurity
Blog — PlanetScale
Blog — PlanetScale
Recorded Future
Recorded Future
D
DataBreaches.Net
Spread Privacy
Spread Privacy
T
Threat Research - Cisco Blogs
I
Intezer
P
Palo Alto Networks Blog
Simon Willison's Weblog
Simon Willison's Weblog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
I
InfoQ
宝玉的分享
宝玉的分享
Security Latest
Security Latest
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Threatpost
Cisco Talos Blog
Cisco Talos Blog
P
Proofpoint News Feed
博客园 - 司徒正美
H
Hacker News: Front Page
Y
Y Combinator Blog
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
NISL@THU
NISL@THU
月光博客
月光博客
有赞技术团队
有赞技术团队
Cloudbric
Cloudbric
酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
A
Arctic Wolf
博客园 - 【当耐特】
W
WeLiveSecurity
V
Visual Studio Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
V
V2EX
C
Cyber Attacks, Cyber Crime and Cyber Security
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
The Cloudflare Blog
Stack Overflow Blog
Stack Overflow Blog

博客园 - peak

windows 服务器时间同步失败处理方法 利用批处理自动创建schtasks系统任务 抓取网站编码信息及内容 在线调试利器Fiddler AutoResponse jquery跨域调用WCF Base-64 字符串中的无效字符 Ie7下鼠标滚轮失效 Android 笔记二(取得根目录权限) Android 笔记一 捕获asp.net ValidationSummary 控件消息。 - peak Sql Split 函数 Rss的浏览器之痛 兼容IE,Firefox 图片即时显示 asp.net 中插入flash - peak - 博客园 迷茫 windows service 之访问权限 windows Service 之调试过程 比尔盖兹在某个大学毕业典礼上的演讲中,对毕业生提出十一项极为睿智的人生建议 泛型
MSDN上关于泛型的例子
peak · 2007-09-05 · via 博客园 - peak

using System;

using System.Collections;

using System.Collections.Generic;

using System.Text;

namespace Generics_CSharp

{

    // 尖括号中的类型参数 T

    public class MyList<T> : IEnumerable<T>

    {

        protected Node head;

        protected Node current = null;

        // 嵌套类型也是 T 上的泛型

        protected class Node

        {

            public Node next;

            // T 作为私有成员数据类型。

            private T data;

            // 在非泛型构造函数中使用的 T

            public Node(T t)

            {

                next = null;

                data = t;

            }

            public Node Next

            {

                get { return next; }

                set { next = value; }

            }

            // T 作为属性的返回类型。

            public T Data

            {

                get { return data; }

                set { data = value; }

            }

        }

        public MyList()

        {

            head = null;

        }

        // T 作为方法参数类型。

        public void AddHead(T t)

        {

            Node n = new Node(t);

            n.Next = head;

            head = n;

        }

        // 实现 GetEnumerator 以返回 IEnumerator<T>,从而启用列表的

        // foreach 迭代。请注意,在 C# 2.0 中,

        // 不需要实现 Current MoveNext

        // 编译器将创建实现 IEnumerator<T> 的类。

        public IEnumerator<T> GetEnumerator()

        {

            Node current = head;

            while (current != null)

            {

                yield return current.Data;

                current = current.Next;

            }

        }

        // 必须实现此方法,因为

        // IEnumerable<T> 继承 IEnumerable

        IEnumerator IEnumerable.GetEnumerator()

        {

            return GetEnumerator();

        }

    }

// where T : IComparable<T> 表示这个T类型必须实现了Icomparable接口

    public class SortedList<T> : MyList<T> where T : IComparable<T>

    {

        // 一个未优化的简单排序算法,

        // 该算法从低到高对列表元素排序:

        public void BubbleSort()

        {

            if (null == head || null == head.Next)

                return;

            bool swapped;

            do

            {

                Node previous = null;

                Node current = head;

                swapped = false;

                while (current.next != null)

                {

                    // 由于需要调用此方法,因此,SortedList

                    // 类在 IEnumerable<T> 上是受约束的

                    if (current.Data.CompareTo(current.next.Data) > 0)

                    {

                        Node tmp = current.next;

                        current.next = current.next.next;

                        tmp.next = current;

                        if (previous == null)

                        {

                            head = tmp;

                        }

                        else

                        {

                            previous.next = tmp;

                        }

                        previous = tmp;

                        swapped = true;

                    }

                    else

                    {

                        previous = current;

                        current = current.next;

                    }

                }// 结束 while

            } while (swapped);

        }

    }

    // 一个将自身作为类型参数来实现 IComparable<T> 的简单类,

    // 是对象中的

    // 常用设计模式,这些对象

    // 存储在泛型列表中。

    public class Person : IComparable<Person>

    {

        string name;

        int age;

        public Person(string s, int i)

        {

            name = s;

            age = i;

        }

        // 这会使列表元素

        // age 值排序。

        public int CompareTo(Person p)

        {

            return age - p.age;

        }

        public override string ToString()

        {

            return name + ":" + age;

        }

        // 必须实现 Equals

        public bool Equals(Person p)

        {

            return (this.age == p.age);

        }

    }

    class Generics

    {

        static void Main(string[] args)

        {

            // 声明并实例化一个新的范型 SortedList 类。

            // Person 是类型参数。

            SortedList<Person> list = new SortedList<Person>();

            // 创建 name age 值以初始化 Person 对象。

            string[] names = new string[] { "Franscoise", "Bill", "Li", "Sandra", "Gunnar", "Alok", "Hiroyuki", "Maria", "Alessandro", "Raul" };

            int[] ages = new int[] { 45, 19, 28, 23, 18, 9, 108, 72, 30, 35 };

            // 填充列表。

            for (int x = 0; x < names.Length; x++)

            {

                list.AddHead(new Person(names[x], ages[x]));

            }

            Console.WriteLine("Unsorted List:");

            // 打印出未排序的列表。

            foreach (Person p in list)

            {

                Console.WriteLine(p.ToString());

            }

            // 对列表进行排序。

            list.BubbleSort();

            Console.WriteLine(String.Format("{0}Sorted List:", Environment.NewLine));

            // 打印出排序的列表。

            foreach (Person p in list)

            {

                Console.WriteLine(p.ToString());

            }

            Console.WriteLine("Done");

        }

    }

}

using System;

using System.Collections;

public class List

{

    public static IEnumerable Power(int number, int exponent)

    {

        int counter = 0;

        int result = 1;

        while (counter++ < exponent)

        {

            result = result * number;

            yield return result;

        }

    }

    static void Main()

    {

        // Display powers of 2 up to the exponent 8:

        foreach (int i in Power(2, 8))

        {

            Console.Write("{0} ", i);

        }

    }

}

 

Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=860075
http://community.csdn.net/Expert/topic/5570/5570682.xml?temp=.8089563
http://blog.csdn.net/ilovemsdn/archive/2006/09/13/1218601.aspx