Swing 网格布局或 JTable
greetngs,我正在尝试通过编写一个简单的 connect4 游戏来学习 Java 和 Swing。
我希望您能指导我解决以下问题:
要模拟 connect4 网格,我应该使用 JTable 还是依赖网格布局?
谢谢。
greetngs, i am trying to learn Java and Swing by writing a simple game of connect4.
i am hoping you could guide me regarding the following issue:
to emulate the connect4 grid should i use a JTable or rely on Grid layout?
thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为网格布局会更好
(来源:stevemcc.com)
网格布局的示例: http://leepoint.net/notes-java/GUI/layouts/30gridlayout.html
您可以使用 JLabel 添加 图像。
您可以创建一组 JLabels 并将每个 JLabel 添加到面板的一个单元格中。如果需要修改图片只需修改Jlabel图片即可。
I think Grid layout would be better
(source: stevemcc.com)
An example of grid layout: http://leepoint.net/notes-java/GUI/layouts/30gridlayout.html
You can use a JLabel to add the images.
You can create an array of JLabels and add each one to one cell of the panel. If you need to modify the picture you just modify the Jlabel picture.