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アプレットの場合、「画面をクリアする」ための最良の方法は何ですか?特定の機能はありますか、それとも画面サイズの白い長方形を作成してペイントしますか?
アプレット画面全体をクリアするためのベストプラクティスは何ですか?
通常、アプレットをクリアするためのベストプラクティスは、背景をペイントすることです。
Dimension d = getSize(); g.setColor(Color.WHITE); g.fillRect(0, 0, d.width, d.height);