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.
在 AWT 包中,有一些方法setVisible(),show()它们执行相同的操作,但实际上在哪里不同?
setVisible()
show()
该show()方法是不推荐使用的版本setVisible(),如javadoc中所示。
此外,这里给出了原因的解释。
show() 和 hide() 自 JDK 1.1 版起已被弃用,优先于 setVisible(boolean)。
setVisible 将显示和隐藏一个组件,而 show() 将只显示该组件。