execute():只能执行 Runnable 类型的任务。submit():可以执行 Runnable 和 Callable 类型的任务。submit()能获取返回值(异步)以及处理Exception。execute()方法不行。