我在Eclipse中遇到以下错误:
DISPOSE_ON_CLOSE cannot be resolved something.java javadir/src/ line xxxx Java Problem
DISPOSE_ON_CLOSE
位于javax.swing
,但即使我添加import javax.swing.*;
也无效。
有什么想法吗?
答案 0 :(得分:4)
答案 1 :(得分:1)
DISPOSE_ON_CLOSE
不直接在javax.swing。*中,但在WindowConstants界面中,因此您需要使用WindowConstants.DISPOSE_ON_CLOSE
。