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

Method main

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

Source from the content-addressed store, hash-verified

6
7public class StackTest {
8 public static void main(String[] args) {
9 Deque<String> stack = new ArrayDeque<>();
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

splitMethod · 0.80
isEmptyMethod · 0.80
printMethod · 0.80
pushMethod · 0.45
popMethod · 0.45

Tested by

no test coverage detected