Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

import java.applet.*; import java.aet.

*; /*<applet code="AppLife1" width="1000"height="120"></applet>*/ public class ApppLife1 extends Applet implements Runnable{ int x=0; public void init(){ setFont(new Font("klzsdf",Font.BOLD,40)); setBackground(Color.orange); System.out.println("init....."+ Thread.currentThread().getName()); Thread t=new Thread(this); t.start(); } public void run(){ while(true){ if(x==1000)x=0; else x=x+10; try{ Thread.sleep(200); }catch(Exception e){ } repaint(); }} public void start(){ System.out.println("start.."+Thread.currentThread().getName()); } public void paint(Graphics g){ System.out.println("paint..."+Thread.currentThread().getName()); g.drawString("baby",x,100); }};

You might also like