Java新建线程异步调用示例
程序员文章站
2022-06-29 11:50:29
...
new Thread(new Runnable() { public void run() { try { sendEmail(null, to, subject, content); } catch (Exception ex) { } } }).start();