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.
为什么不推荐使用 Button.enable?我需要使用我的按钮的方法,但它已被弃用,所以它没有效果。
我该如何解决?还有其他选择吗?
从JDK 文档:
已弃用。从 JDK 版本 1.1 开始,由 java.awt.Component.setEnabled(boolean) 取代
setEnabled(true)所以改为调用该方法。
setEnabled(true)