Hi! I have a confussion. to keep running an applet why do we alway impliment runable interface. can't we create a new thread and run that applet in that. can somebody give me any reason for that. regards, Bobby ;-}
maateen ashraf
Ranch Hand
Joined: Jan 08, 2001
Posts: 122
posted
0
its so simple just an instance of Thread class then pass "this" to instance of Thread class. now ur applet class is inside thread .... i hope this will help U
Rahul Rathore
Ranch Hand
Joined: Sep 30, 2000
Posts: 324
posted
0
Ramneek, there is NO need to implement the Runnable interface for an applet. You can make, display and run the applet WITHOUT implementing Runnable interface. But normally we need to carry on some processing or animation in a separate thread. Thus we want the applet to create and start a thread for that purpose. One way to do that is to make the applet implement the Runnable, and then to construct and start a new Thread using the Runnable applet instance.
Ramneek Handa
Ranch Hand
Joined: Nov 10, 2000
Posts: 44
posted
0
thanks guys for above. can somebody tell me what is the difference between ranch hand ,greenhorn, bartenders and sheriffs. [This message has been edited by Ramneek Handa (edited March 14, 2001).]