摘要: using System;using System.Collections;namespace Adapter{ public interface IStack//客户希望的接口 { void Pus(object item); object Pop(); object Peek(); } /// /// /////////////////////////对象适配器 /// publ... 阅读全文
posted @ 2006-03-08 13:59 kuailewangzi1212 阅读(120) 评论(0) 推荐(0) 编辑