Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于Java Applet,“清屏”的最佳方法是什么?是否有特定的功能,或者您会创建和绘制屏幕大小的白色矩形?
清除整个小程序屏幕的最佳做法是什么?
通常清除小程序的最佳做法是绘制背景
Dimension d = getSize(); g.setColor(Color.WHITE); g.fillRect(0, 0, d.width, d.height);