LinkedList 可以接受图像图标吗?
如何用Java编写GUI LinkedList程序来推送图像文件而不是其他数据类型项?
对于推送指令,我希望给出图像文件的名称以将其添加到链接列表中,并设置弹出指令以删除图像?
How can I write a GUI LinkedList program by Java to push Image files instead of other data type items?
For the push instruction I wish to give the name of the image file to add it in to the LinkedList, and set the pop instruction to remove the image ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
由于您可以在 LinkedList 中存储任何对象,因此您可以将文件名存储为字符串、文件对象或 ImageIcon 对象在列表中。使用 genercis 让事情变得简单:
As you can store any Object in a LinkedList you could either store the Filename as a String, the File Object or the ImageIcon Object in the list. Using genercis makes things easy:
是
LinkedList
接受对象Yes
LinkedList
accepts Object您可以使用 java.util 包中的通用链表来确保类型安全。
然而,为了能够按名称推送,您需要将其包装在您自己的实现类中。并重写push方法。
You can use generic linked lists from java.util package for type safety.
However to be able push by name, you need wrap it around in your own implementation class. And override the push method.