diff options
Diffstat (limited to 'src/de/fhswf/in/inf/java1/aufgabe6/Aufgabe6.java')
| -rw-r--r-- | src/de/fhswf/in/inf/java1/aufgabe6/Aufgabe6.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/de/fhswf/in/inf/java1/aufgabe6/Aufgabe6.java b/src/de/fhswf/in/inf/java1/aufgabe6/Aufgabe6.java index ddb82d1..6326774 100644 --- a/src/de/fhswf/in/inf/java1/aufgabe6/Aufgabe6.java +++ b/src/de/fhswf/in/inf/java1/aufgabe6/Aufgabe6.java @@ -6,8 +6,6 @@ package de.fhswf.in.inf.java1.aufgabe6; import java.util.Iterator; import java.util.Vector; -import de.fhswf.in.inf.java1.aufgabe4.Fill; - /** * Main function for testing Vectors and Lists. * @@ -33,7 +31,7 @@ public final class Aufgabe6 */ public static void main(String[] args) { - final int testLength = 100000000; + final int testLength = 10000; Vector<Integer> test = new Vector<>(testLength); Integer testGet; @@ -43,7 +41,7 @@ public final class Aufgabe6 } long start; - start = System.currentTimeMillis(); // Gets current time in µs + start = System.currentTimeMillis(); // Gets current time in ms for (int i = 0; i < test.size(); i++) { @@ -54,7 +52,7 @@ public final class Aufgabe6 System.out.println("Elapsed time: " + (System.currentTimeMillis() - start) + " ms"); - start = System.currentTimeMillis(); // Gets current time in µs + start = System.currentTimeMillis(); // Gets current time in ms for (Iterator<Integer> it = test.iterator(); it.hasNext();) { @@ -65,7 +63,7 @@ public final class Aufgabe6 System.out.println("Elapsed time: " + (System.currentTimeMillis() - start) + " ms"); - start = System.currentTimeMillis(); // Gets current time in µs + start = System.currentTimeMillis(); // Gets current time in ms for (Integer integer : test) { @@ -75,6 +73,8 @@ public final class Aufgabe6 // Calculates the runtime of foreach System.out.println("Elapsed time: " + (System.currentTimeMillis() - start) + " ms"); + + ListBenchmark.startBenchmark(); } |
