Question:
I have written an applet which uses a Graphics object to draw movingcircles. However, when multiple threads accesses the same Graphics object,the circles disappear after being on screen for around 5 seconds,without throwing an exception. Why does this happen and how do I curethis?
Answer:
AWT graphics are designed to be drawn all from the same thread. Ifyou attempt to simultaneously draw to components from differentthreads, unpredictable results such as the ones you are seeing willresult.
Therefore, to ensure predictable behavior you must either useSwingUtilities.invokeLater() to schedule the drawing to occur withinthe main AWT thread, or properly synchronize your threads. In yourcase, it may suffice to synchronize access to the Graphics object toensure that all drawing operations are performed atomically.
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.























