OnJava8-Examples/containers/StackTest.java
Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

16 lines
393 B
Java

//: containers/StackTest.java
// ©2015 MindView LLC: see Copyright.txt
import com.mindviewinc.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
*///:~