Stack

stack的特点是先进后出,可以用来做字符的反排序

package com.hp.it.perf.logview.util;

import java.util.Stack;

public class TestStack {
	 public static void main(String[] args) {  
	        Stack<String> stack = new Stack<String>();  
	        stack.push("1");  
	        stack.push("2");  
	        stack.push("3");  
	        stack.push("4");  
	        stack.push("5");  
	        System.out.println(stack.peek());  
	        while(!stack.empty()){       
	            System.out.println(stack.pop());       
	        }  
	         
	    }  
}

你可能感兴趣的:(stack)