我想通过计时器传递参数。我看过这篇文章Pass parameters to Timer Task (Java),但它似乎使用了我使用的其他计时器。我也看过其他文章,但似乎都没有。这是我的代码。
public static Timer sendObjects = new Timer();
public static TimerTask sendTask = new TimerTask() {
public void run() {
//This is where I would use the variable I pass through
};
我想通过String数组传递此计时器任务。类似于使用方法进行操作的方式。我该怎么办?我将用什么来运行它?