()
| 34 | System.out.println(this.toString()); |
| 35 | } |
| 36 | public void learn() throws Exception{ |
| 37 | // long start = System.currentTimeMillis(); |
| 38 | Random rand = new Random(); |
| 39 | int time = rand.nextInt(1000)+3000; |
| 40 | Thread.sleep(time); |
| 41 | // long end = System.currentTimeMillis(); |
| 42 | // System.out.println(end-start); |
| 43 | } |
| 44 | public static void main(String[] args) { |
| 45 | Student s = new Student(); |
| 46 | s.display(); |
no outgoing calls
no test coverage detected