OnJava8-Examples/holding/StackTest.java
2015-05-29 14:18:51 -07:00

16 lines
387 B
Java

//: holding/StackTest.java
// ©2015 MindView LLC: see Copyright.txt
import net.mindview.util.*;
public class StackTest {
public static void main(String[] args) {
Stack<String> stack = new Stack<>();
for(String s : "My dog has fleas".split(" "))
stack.push(s);
while(!stack.empty())
System.out.print(stack.pop() + " ");
}
} /* Output:
fleas has dog My
*///:~