jdk 자체 타이머 사용 방법 상세 설명
스 레 드 는 배경 스 레 드 에서 실 행 될 작업 을 설정 하 는 도구 입 니 다.임 무 를 한 번 수행 하거나 정기 적 으로 반복 할 수 있 습 니 다.모든 타이머 대상 과 대응 하 는 것 은 하나의 배경 스 레 드 로 모든 타이머 작업 을 순서대로 수행 하 는 데 사 용 됩 니 다.타이머 임 무 는 반드시 신속하게 완성 해 야 한다.타이머 작업 을 수행 하 는 시간 이 너무 길 면 타이머 작업 수행 스 레 드 를 독점 합 니 다.따라서 이 는 후속 임무 의 집행 을 지연 시 킬 수 있 고 이런 임 무 는'쌓 여 있다'며 상기 불 친절 한 임무 가 최종 적 으로 완 성 될 때 만 신속하게 연속 적 으로 실 행 될 수 있다.
schedule(Timer Task task,long delay)은 지정 지연 후 지정 한 작업 을 수행 하도록 설정 합 니 다.
schedule(Timer Task task,Date time)은 지정 한 시간 에 지정 한 작업 을 수행 하도록 배정 합 니 다.만약 이 시간 이 이미 지나 갔다 면,즉시 이 임 무 를 집행 하도록 안배 할 것 이다.
schedule(Timer Task task,long delay,long period)에서 지정 한 작업 을 지정 한 지연 후부 터 반복 되 는 고정 지연 으로 실행 하도록 배정 합 니 다.어떤 이유(예 를 들 어 쓰레기 회수 나 다른 배경 활동)로 인해 특정한 집행 이 지연 되면 후속 집행 도 지연 된다.
schedule(Timer Task task,Date firstTime,long period)에서 지정 한 작업 을 지정 한 시간 에 반복 적 으로 고정 지연 시 킵 니 다.어떤 이유(예 를 들 어 쓰레기 회수 나 다른 배경 활동)로 인해 특정한 집행 이 지연 되면 후속 집행 도 지연 된다.
package test;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;
/**
* jdk
*
* @author LIUTIE
*
*/
public class JDKTimer {
public static void main(String[] args) throws ParseException {
//
final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Timer timer = new Timer();
// 10s ,
System.out.print(sdf.format(new Date()));
System.out.println("the timer one will be executed after 10 seconds...");
long milliseconds = 10 * 1000;
timer.schedule(new TimerTask() {
@Override
public void run() {
System.out.print(sdf.format(new Date()));
System.out.println("the timer one has finished execution");
}
}, milliseconds);
//12 , 1s
System.out.print(sdf.format(new Date()));
System.out.println("the timer two will be executed after 12 seconds...");
//
long afterSs = 12 * 1000;
//
long intervalSs1 = 1 * 1000;
timer.schedule(new TimerTask() {
//
int i = 0;
@Override
public void run() {
System.out.print(sdf.format(new Date()));
System.out.println("the timer two has execution " + (++i) + " timers");
// 10
if (i == 10) {
this.cancel();
}
}
}, afterSs, intervalSs1);
// ,
System.out.print(sdf.format(new Date()));
System.out.println("the timer three will be executed at 2017-06-27 21:47:00...");
Date date = sdf.parse("2017-06-27 21:47:00");
timer.schedule(new TimerTask() {
@Override
public void run() {
System.out.print(sdf.format(new Date()));
System.out.println("the timer three has finished execution");
}
}, date);
//
System.out.print(sdf.format(new Date()));
System.out.println("the timer four will be executed at 2017-06-27 21:48:00...");
//
long intervalSs = 1 * 1000;
//
Date beginTime = sdf.parse("2017-06-27 21:48:00");
timer.schedule(new TimerTask() {
//
int i = 0;
@Override
public void run() {
System.out.print(sdf.format(new Date()));
System.out.println("the timer four has execution " + (++i) + " timers");
// 10
if (i == 10) {
this.cancel();
}
}
}, beginTime, intervalSs);
}
}
실행 결과
2017-06-27 21:46:24the timer one will be executed after 10 seconds...
2017-06-27 21:46:24the timer two will be executed after 12 seconds...
2017-06-27 21:46:24the timer three will be executed at 2017-06-27 21:47:00...
2017-06-27 21:46:24the timer four will be executed at 2017-06-27 21:48:00...
2017-06-27 21:46:34the timer one has finished execution
2017-06-27 21:46:36the timer two has execution 1 timers
2017-06-27 21:46:37the timer two has execution 2 timers
2017-06-27 21:46:38the timer two has execution 3 timers
2017-06-27 21:46:39the timer two has execution 4 timers
2017-06-27 21:46:40the timer two has execution 5 timers
2017-06-27 21:46:41the timer two has execution 6 timers
2017-06-27 21:46:42the timer two has execution 7 timers
2017-06-27 21:46:43the timer two has execution 8 timers
2017-06-27 21:46:44the timer two has execution 9 timers
2017-06-27 21:46:45the timer two has execution 10 timers
2017-06-27 21:47:00the timer three has finished execution
2017-06-27 21:48:00the timer four has execution 1 timers
2017-06-27 21:48:01the timer four has execution 2 timers
2017-06-27 21:48:02the timer four has execution 3 timers
2017-06-27 21:48:03the timer four has execution 4 timers
2017-06-27 21:48:04the timer four has execution 5 timers
2017-06-27 21:48:05the timer four has execution 6 timers
2017-06-27 21:48:06the timer four has execution 7 timers
2017-06-27 21:48:07the timer four has execution 8 timers
2017-06-27 21:48:08the timer four has execution 9 timers
2017-06-27 21:48:09the timer four has execution 10 timers
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
2022년 3월 21일 TIL1. JVM & JDK JVM JRE 자바 실행 환경의 약자로 자바 프로그램을 실행하기 위한 도구들이 들어있으며 JVM이 이 안에 포함된다 JDK JRE + 개발툴 javac는 컴파일 명령어 HelloWorld.cl...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.