@Override
public Result tow() {
Thread thread = new Thread(() -> {//里边写需要的操作。return之后也不停止运行,直到结束
while (1 == 1) {
System.out.println(1);
}
});
thread.start();
return new Result();
}



