lab3: add missing files, freeze the development
This commit is contained in:
parent
03bbb6e4c5
commit
7094322744
|
@ -0,0 +1,13 @@
|
||||||
|
import lab3lib.Finder;
|
||||||
|
|
||||||
|
public class Benchmarker {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
System.out.print("Timing object creation...");
|
||||||
|
long startTime = System.nanoTime();
|
||||||
|
Finder obj = new Finder();
|
||||||
|
long endTime = System.nanoTime();
|
||||||
|
|
||||||
|
System.out.println(" Finished!");
|
||||||
|
System.out.println("Operation took " + (endTime - startTime) + "ns");
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
import
|
||||||
|
public class Letter {
|
||||||
|
this.
|
||||||
|
public void main() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue