Advertisement
BullyATWiiplaza

Benchmark

Sep 19th, 2014
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. public class Benchmark
  2. {
  3.     double startingTime;
  4.    
  5.     public Benchmark()
  6.     {
  7.         this.startingTime = System.currentTimeMillis();
  8.     }
  9.    
  10.     public double getTimeElapsed()
  11.     {
  12.         return (System.currentTimeMillis() - startingTime) / 1000;
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement