Почему не проходит ?
package com.javarush.task.task16.task1605;
import java.util.Date;
/*
Поговорим о музыке
*/
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;
@Override
public void run() {
Date current = new Date();
startPlaying();
sleepNSeconds(1);
stopPlaying();
Date currentNew = new Date();
long msTime = currentNew.getTime() - current.getTime();
System.out.println("Playing " + msTime + " ms");
}
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();
}
}
public void time(){
System.out.println();
}
}