본문 바로가기
자바

자바 소스코드: Runnable 예제(Timer)

by 드린 2016. 11. 12.

목차

    반응형
    package javaapplication21;
    
    import java.awt.*;
    import javax.swing.*;
    
    class TimerRunnable implements Runnable{
        int n=0;
        public void run(){
            while(true){
                System.out.print(n++);
                try{
                    Thread.sleep(1000);
                }
                catch(Exception e){
                    return;
                }
            }
        }
    }
    public class JavaApplication21 {
        public static void main(String[] args) {
            Thread th = new Thread(new TimerRunnable());
            th.start();
        }
    }
    
    

    <결과>

    2016/11/12 - [자바] - 자바 소스코드: ThreadTimer 예제

    2016/11/12 - [자바] - 자바 소스코드: 스레드 생성,실행 예제

    2016/11/12 - [자바] - 자바 소스코드: 명품자바프로그래밍 오픈첼린지 12(클리핑 적용)

    #자바 #자바 소스코드 #Runnable 예제 #TimerRunnable #thread #실습 예제

    반응형