摘要:
C#泛型演示 class Stack<T> { private T[] store; private int size public Stack() { store = new T[10]; size = 0; } public void Push(T x) { store[size++] = x; } public void T Pop() { return store[--size... 阅读全文
posted @ 2008-05-17 17:07
林614
阅读(757)
评论(0)
推荐(0)