Java栈的使用

public static void main(String[] args) {
    Stack stack = new Stack<>();
    stack.push("jack");
    stack.push("rose");
    stack.push("tom");
    while (!stack.isEmpty()) {
        System.out.println(stack.pop());
    }
}

你可能感兴趣的:(java,算法,javascript)