摘要: ```java public class ArrayStack{ private String[] items; //数组 private int count; //栈内元素 private int n; //栈大小 //初始化 public ArrayStack(int n){ this.items = new String[n]; this.n = n; this.count = 0; } / 阅读全文
posted @ 2019-11-06 09:09 剑小新 阅读(277) 评论(0) 推荐(0)