首页 > 代码库 > 执行定时或者后台函数

执行定时或者后台函数

Timer timer = new Timer();
 timer.schedule(new Task(), 5 * 1000,5 * 1000);

 

//不会阻塞哦

执行定时或者后台函数