logo

Metoda harmonogramu() licznika czasu Java

Metoda harmonogramu (zadanie TimerTask, Data i godzina) klasy Timer służy do zaplanowania wykonania zadania o zadanej godzinie. Jeśli podany czas przypada w przeszłości, zadanie jest zaplanowane na ten moment do wykonania.

Składnia

 public void schedule(TimerTask task, Date time) 

Parametr

zadanie - jest to zadanie do ustalenia.

czas - jest to czas, w którym zadanie ma zostać wykonane.

przechodzenie przez drzewo binarne w kolejności

Rzuca

Wyjątek IllegalArgument — Zgłasza wyjątek, gdy time.getTime() ma wartość ujemną.

Wyjątek IllegalState — Zgłasza wyjątek, gdy zadanie jest zaplanowane lub anulowane, gdy licznik czasu zostaje anulowany lub gdy wątek licznika czasu zostaje zakończony.

Wyjątek NullPointer — Zgłasza wyjątek, gdy zadanie lub czas ma wartość null.

Przykład 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()); } } 
Przetestuj teraz

Wyjście:

 Task is on 

Przykład 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++)>

Harmonogram (zadanie TimerTask, Date FirstTime, długi okres) jest metodą klasy Timer. Służy do ciągłego planowania danego zadania w zadanym, ustalonym czasie wykonania.

Składnia

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

Parametr

zadanie - To jest zaplanowane zadanie.

pierwszy raz - Jest to pierwszy raz, w którym dane zadanie jest wykonywane.

pływać do sznurka

okres - Jest to czas wykonania w milisekundach.

Rzuca

Wyjątek IllegalArgument — Zgłasza wyjątek, gdy wartość FirstTime.getTime() jest mniejsza niż 0 lub okres jest większy lub równy 0

Wyjątek IllegalState — Zgłasza wyjątek, gdy zadanie jest już zaplanowane lub anulowane, gdy licznik czasu zostaje anulowany lub gdy wątek licznika czasu zostaje zakończony.

Wyjątek NullPointer — Zgłasza wyjątek, gdy zadanie lub czas ma wartość null.

Przykład 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); ; } } 
Przetestuj teraz

Wyjście:

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

Przykład 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++)>