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

Method main

collectiontopics/ListOps.java:113–123  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

111 System.out.println(ll);
112 }
113 public static void main(String[] args) {
114 // Make and fill a new list each time:
115 basicTest(new LinkedList<>(LIST));
116 basicTest(new ArrayList<>(LIST));
117 iterMotion(new LinkedList<>(LIST));
118 iterMotion(new ArrayList<>(LIST));
119 iterManipulation(new LinkedList<>(LIST));
120 iterManipulation(new ArrayList<>(LIST));
121 testVisual(new LinkedList<>(LIST));
122 testLinkedList();
123 }
124}
125/* Output:
126[AliceBlue, AntiqueWhite, Aquamarine, Azure, Beige,

Callers

nothing calls this directly

Calls 5

basicTestMethod · 0.95
iterMotionMethod · 0.95
iterManipulationMethod · 0.95
testVisualMethod · 0.95
testLinkedListMethod · 0.95

Tested by

no test coverage detected