我一直在编写一个程序,打开一个窗口,如果你关闭它,它将打开两个新窗口。它工作正常,但我试图通过使用执行器服务来更改所有窗口的颜色,该服务器调用我的函数ColorChanger。
问题是:如果我想使用执行程序服务,我需要一个静态方法,但如果我想使用this.getContentPane().setBackground(Color.blue);
命令,我必须使用非静态功能。
如果您需要更多信息,请查看我的代码,一切都应该通过自我解释:
public class SplittingWindow extends JFrame implements WindowListener,KeyListener {
int width = (int)Toolkit.getDefaultToolkit().getScreenSize().getWidth();
int height = (int)Toolkit.getDefaultToolkit().getScreenSize().getHeight ();
Random rand = new Random();
String Input = new String();
static ScheduledExecutorService executorService = Executors.newSingleThreadScheduledExecutor();
public static void main(String[] args) {
executorService.scheduleAtFixedRate(() -> ColorChanger(), 0, 1, TimeUnit.SECONDS);
new SplittingWindow();
}
SplittingWindow(){
addWindowListener(this);
addKeyListener(this);
setResizable(false);
setSize(100,100);
setVisible(true);
setLocation(rand.nextInt(width-150),rand.nextInt(height-200)+50);
}
public void ColorChanger(){
getContentPane().setBackground(Color.blue);
}
public void windowClosing(WindowEvent arg0) {
System.out.println("closing");
new SplittingWindow();
new SplittingWindow();
dispose();
}
public void keyTyped(KeyEvent e) {
Input = Input + e.getKeyChar();
if(Input.contains("JayJay")==true){
System.exit(0);
}
}
// Removed various interface methods
}
答案 0 :(得分:0)
如果你想使用hs类的方法而不使它成为静态,你需要实例化fqct:)
public static void main(String[] args) {
SplittingWindow sp = new SplittingWindow();
executorService.scheduleAtFixedRate(() -> sp.ColorChanger(), 0, 1, TimeUnit.SECONDS);
}
尝试这个,它应该工作