Java Open New Thread to Run Static Method Posted on 2018-08-30 | In java description: new thread to run static method in java Code for run static method in new thread in java12345new Thread(new Runnable() { public void run() { staticMethod(); }}).start(); Post author: killfun Post link: http://search4fan.github.io/post/java_new_thread_run_static.html Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.