diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2014-12-07 19:15:58 +0100 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2014-12-07 19:18:03 +0100 |
| commit | 9acea903216dbe371dd7b41cbf23b46a5732bcb4 (patch) | |
| tree | 5a61491ad22e470db8151d2e07f163b011c72d6e /src/de/fhswf/in/inf/java1/aufgabe6/Aufgabe6.java | |
| parent | 8a53a8fca255e4a84ca0e35dac925a223738b98a (diff) | |
| download | Java1-9acea903216dbe371dd7b41cbf23b46a5732bcb4.tar.gz Java1-9acea903216dbe371dd7b41cbf23b46a5732bcb4.zip | |
Refactored the packagenames fo better sorting
Diffstat (limited to 'src/de/fhswf/in/inf/java1/aufgabe6/Aufgabe6.java')
| -rw-r--r-- | src/de/fhswf/in/inf/java1/aufgabe6/Aufgabe6.java | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/src/de/fhswf/in/inf/java1/aufgabe6/Aufgabe6.java b/src/de/fhswf/in/inf/java1/aufgabe6/Aufgabe6.java deleted file mode 100644 index 0fbaf00..0000000 --- a/src/de/fhswf/in/inf/java1/aufgabe6/Aufgabe6.java +++ /dev/null @@ -1,81 +0,0 @@ -/** - * - */ -package de.fhswf.in.inf.java1.aufgabe6; - -import java.util.Iterator; -import java.util.Vector; - -/** - * Main function for testing Vectors and Lists. - * - * @author $Author: $ - * @version $Revision: $, $Date: $ UTC - */ -public final class Aufgabe6 -{ - - /** - * Prevents instantiation of the utility class. - * - */ - private Aufgabe6() - { - } - - /** - * Main function for testing Vectors and Lists. - * - * @param args - * Command line arguments. - */ - public static void main(String[] args) - { - final int testLength = 10000000; - Vector<Integer> test = new Vector<>(testLength); - Integer testGet; - - for (int i = 0; i < test.capacity(); i++) - { - test.add(i); - } - - long start; - start = System.currentTimeMillis(); // Gets current time in ms - - for (int i = 0; i < test.size(); i++) - { - testGet = test.elementAt(i); - } - - // Calculates the runtime of for - System.out.println("Elapsed time: " - + (System.currentTimeMillis() - start) + " ms"); - - start = System.currentTimeMillis(); // Gets current time in ms - - for (Iterator<Integer> it = test.iterator(); it.hasNext();) - { - testGet = it.next(); - } - - // Calculates the runtime of for - System.out.println("Elapsed time: " - + (System.currentTimeMillis() - start) + " ms"); - - start = System.currentTimeMillis(); // Gets current time in ms - - for (Integer integer : test) - { - testGet = integer; - } - - // Calculates the runtime of foreach - System.out.println("Elapsed time: " - + (System.currentTimeMillis() - start) + " ms"); - - ListBenchmark.startBenchmark(); - - } - -} |
