PHP中文网2017-04-17 16:17:54
Looking at the code, I have a question: What happens after the Thread object is new? Nothing further.
阿神2017-04-17 16:17:54
Your thread has not started, it is missing .start(). Refer to the writing method below.
new Thread(new Runnable(){
//TODO
}).start();