Question
The difference between Executors.newSingleThreadExecutor().execute(command) and new Thread(command).start();
Well title says it, what is the difference between Executors.newSingleThreadExecutor().execute(command)
and new Thread(command).start();
45 18719
45