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 中开发应用程序等的教程。我的Main课extends JFrame。它只是在屏幕上移动一个球。在达到我可以移动球可以移动的地步后,我开始与窗口的边界进行碰撞,并花了几分钟试图弄清楚为什么只有在 3 边超出边界,然后在我之前远远超出顶部意识到边界是被遵守的,但它们是实际窗口的边缘,超出了显示区域。
Main
extends JFrame
我将如何设置Main课程以使边界成为可见区域?它会扩展一个不同的类吗?然后它在别的东西里面是什么?
paintComponent(...)
super.paintComponent(g)