OnJava8-Examples/holding/StackCollision.java

23 lines
624 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: holding/StackCollision.java
public class StackCollision {
public static void main(String[] args) {
net.mindview.util.Stack<String> stack =
2015-05-05 11:20:13 -07:00
new net.mindview.util.Stack<>();
2015-04-20 15:36:01 -07:00
for(String s : "My dog has fleas".split(" "))
stack.push(s);
while(!stack.empty())
System.out.print(stack.pop() + " ");
System.out.println();
java.util.Stack<String> stack2 =
2015-05-05 11:20:13 -07:00
new java.util.Stack<>();
2015-04-20 15:36:01 -07:00
for(String s : "My dog has fleas".split(" "))
stack2.push(s);
while(!stack2.empty())
System.out.print(stack2.pop() + " ");
}
} /* Output:
fleas has dog My
fleas has dog My
2015-05-05 11:20:13 -07:00
*///:~