欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

java用数组实现栈代码

程序员文章站 2022-07-10 20:30:05
...
public class MyStack {
	
	private Object[] arr =new  Object[5];
	private int index = -1;


	public boolean push(Object obj) {
		if (index+1>=arr.length)
			return false;
		arr[++index] = obj;
		return true;
	}


	public Object pop() {
			if (index<0)
				return null;
			return arr[index--];
	}


}