logo

Java Timerのschedule()メソッド

Timer クラスのスケジュール (TimerTask タスク、日時) メソッドは、指定された時刻に実行するタスクをスケジュールするために使用されます。指定された時間が過去の場合、タスクはその動作に実行されるようにスケジュールされます。

構文

 public void schedule(TimerTask task, Date time) 

パラメータ

タスク - それはスケジュールされるタスクです。

時間 - それはタスクが実行される時間です。

Inkscape vs Gimp

投げる

IllegalArgumentException - time.getTime() が負の場合、例外がスローされます。

IllegalStateException - タスクがスケジュールまたはキャンセルされたとき、タイマーがキャンセルされたとき、またはタイマー スレッドが終了したときに、例外がスローされます。

NullPointerException - タスクまたは時間が null の場合、例外がスローされます。

例1

 import java.util.*; public class JavaTimerScheduleExample1 { public static void main(String[] args) { // creating timer task, timer Timer t = new Timer(); TimerTask tt = new TimerTask() { @Override public void run() { System.out.println('Task is on'); }; }; t.schedule(tt, new Date()); } } 
今すぐテストしてください

出力:

 Task is on 

例 2

 import java.util.*; public class JavaTimerScheduleExample2{ public static void main(String[] args) { // creating timer task, timer Timer t = new Timer(); TimerTask tt = new TimerTask() { @Override public void run() { for(int i=1; i<=10;i++) { system.out.println('working on'); } }; t.schedule(tt, new date()); < pre> <span> Test it Now </span> <p> <strong>Output:</strong> </p> <pre> working on working on working on working on working on working on working on working on working on working on </pre> <p>The schedule (TimerTask task, Date firstTime, long period) is the method of Timer class. It is used to schedule the given task again and again in given fixed time execution.</p> <h2>Syntax</h2> <pre> public void schedule(TimerTask task, Date firstTime, long period) </pre> <h2>Parameter</h2> <p> <strong>task -</strong> It is the task that is scheduled.</p> <p> <strong>firstTime -</strong> It is the First time in which given task is executed.</p> <p> <strong>period -</strong> It is the time in milliseconds execution.</p> <h2>Throws</h2> <p> <strong>IllegalArgumentException -</strong> It throws the exception when firstTime.getTime() is less than 0, or period is greater than or equal to 0</p> <p> <strong>IllegalStateException -</strong> It throws the exception when the task is already scheduled or canceled, or when the timer is canceled, or when timer thread is terminated.</p> <p> <strong>NullPointerException -</strong> It throws the exception when task or time is null.</p> <h3>Example 3</h3> <pre> import java.util.*; public class JavaTimerScheduleExample3 { public static void main(String[] args) { // creating timer task, timer Timer t = new Timer(); TimerTask tt = new TimerTask() { @Override public void run() { System.out.println(&apos;working on&apos;); }; }; t.schedule(tt, new Date(),1000); ; } } </pre> <span> Test it Now </span> <p> <strong>Output:</strong> </p> <pre> working on working on working on working on . . . . . </pre> <h3>Example 4</h3> <pre> import java.util.*; public class JavaTimerScheduleExample4{ public static void main(String[] args) { // creating timer task, timer Timer t = new Timer(); TimerTask tt = new TimerTask() { @Override public void run() { for(int i=1; i<=10;i++) { system.out.println('working on'); } }; t.schedule(tt, new date(),1000); < pre> <span> Test it Now </span> <p> <strong>Output:</strong> </p> <pre> working on working on working on working on . . . . . </pre> <br></=10;i++)></pre></=10;i++)>

スケジュール(TimerTaskタスク、DatefirstTime、長期)はTimerクラスのメソッドです。これは、指定されたタスクを指定された固定時間で繰り返し実行するようにスケジュールするために使用されます。

Javaの配列のlen

構文

 public void schedule(TimerTask task, Date firstTime, long period) 

パラメータ

タスク - スケジュールされたタスクです。

初めて - 指定されたタスクが初めて実行されるときです。

期間 - ミリ秒単位の実行時間です。

投げる

IllegalArgumentException - firstTime.getTime() が 0 未満の場合、または period が 0 以上の場合に例外をスローします。

IllegalStateException - タスクがすでにスケジュールされているかキャンセルされている場合、タイマーがキャンセルされた場合、またはタイマー スレッドが終了された場合に、例外がスローされます。

NullPointerException - タスクまたは時間が null の場合、例外がスローされます。

Androidの開発者モードをオフにする方法

例 3

 import java.util.*; public class JavaTimerScheduleExample3 { public static void main(String[] args) { // creating timer task, timer Timer t = new Timer(); TimerTask tt = new TimerTask() { @Override public void run() { System.out.println(&apos;working on&apos;); }; }; t.schedule(tt, new Date(),1000); ; } } 
今すぐテストしてください

出力:

 working on working on working on working on . . . . . 

例 4

 import java.util.*; public class JavaTimerScheduleExample4{ public static void main(String[] args) { // creating timer task, timer Timer t = new Timer(); TimerTask tt = new TimerTask() { @Override public void run() { for(int i=1; i<=10;i++) { system.out.println(\'working on\'); } }; t.schedule(tt, new date(),1000); < pre> <span> Test it Now </span> <p> <strong>Output:</strong> </p> <pre> working on working on working on working on . . . . . </pre> <br></=10;i++)>