1. 首页
  2. 数据库
  3. 其它
  4. C#使用Object类实现栈的方法详解

C#使用Object类实现栈的方法详解

上传者: 2020-12-29 15:51:51上传 PDF文件 60.31KB 热度 7次
本文实例讲述了C#使用Object类实现栈的方法。分享给大家供大家参考,具体如下: Stack类的代码: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 使用Object类实现后进先出队列 { class Stack { private Object[] _items; public Object[] Items { get { return this._items; } set { this._items = value
用户评论