MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / main

Method main

collections/StackTest2.java:8–14  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

6
7public class StackTest2 {
8 public static void main(String[] args) {
9 Stack<String> stack = new Stack<>();
10 for(String s : "My dog has fleas".split(" "))
11 stack.push(s);
12 while(!stack.isEmpty())
13 System.out.print(stack.pop() + " ");
14 }
15}
16/* Output:
17fleas has dog My

Callers

nothing calls this directly

Calls 5

pushMethod · 0.95
isEmptyMethod · 0.95
popMethod · 0.95
splitMethod · 0.80
printMethod · 0.80

Tested by

no test coverage detected