After calling the sleep method nothing else will be called in run. I don't get it? I tried some solutions of others here too that supposed to work but they have the same problem when I put it in after sleepNseconds nothing gets called.
package com.codegym.task.task16.task1605;
import java.util.Date;
/*
Let's talk music
*/
public class Solution {
public static int delay = 1000;
public static void main(String[] args) {
Thread violin = new Thread(new Violin("Player"));
violin.start();
}
public static void sleepNSeconds(int n) {
try {
Thread.sleep(n * delay);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
public interface MusicalInstrument extends Runnable {
Date startPlaying();
Date stopPlaying();
}
public static class Violin implements MusicalInstrument
{
private String owner;
public void run()
{
long start = startPlaying().getTime();
sleepNSeconds(1);
long stop = stopPlaying().getTime();
System.out.println(stop - start);
}
public Violin(String owner) {
this.owner = owner;
}
public Date startPlaying() {
System.out.println(this.owner + " is starting to play");
return new Date();
}
public Date stopPlaying() {
System.out.println(this.owner + " is stopping playing");
return new Date();
}
}
}