比较下面两段代码:
import static java.lang.System.out;
......
out.println(“ ”);
.......import static javax.swing.WindowConstants.*;
//Warning: The import javax.swing.WindowConstants is never used
......
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
......为什么第二段代码会出现警告?