Eclipse Java项目错误:无法解决swing中的声明

时间:2009-06-06 17:43:30

标签: java eclipse swing

我在Eclipse中遇到以下错误:

DISPOSE_ON_CLOSE cannot be resolved something.java javadir/src/ line xxxx   Java Problem

DISPOSE_ON_CLOSE位于javax.swing,但即使我添加import javax.swing.*;也无效。

有什么想法吗?

2 个答案:

答案 0 :(得分:4)

从完全限定的参考开始:

javax.swing.WindowConstants.DISPOSE_ON_CLOSE

然后,如果您有时间,请阅读static import

上的此部分

答案 1 :(得分:1)

DISPOSE_ON_CLOSE 直接在javax.swing。*中,但在WindowConstants界面中,因此您需要使用WindowConstants.DISPOSE_ON_CLOSE