Pumpevents - 定制的外观和感觉java占用了太多的系统资源
I make my own GUI see here but system is taking too much resources on further looking into the issue i have found that java pumpevents method is talking too much time.
Any resolutions ????
pump events more detail pump event detail
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您提供的 GUI 中实例化的对象太多。
将一些字段设为静态并在创建之前检查它们是否已经存在...如果...那么...[单例概念]。
There are too many objects instantiating in GUI that you have provided.
Make some fields static and check before creating that do they already exists...if..then... [Singleton Concept].