vote up 1 vote down star
import javax.swing.*;

class Frame extends JFrame{
    Frame() {
        JFrame j = new JFrame();
        j.setBounds(100, 200, 120, 120);
        j.setTitle("null");
        j.setVisible(true);
        j.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    }
}

public class test001 {

    public static void main (String Args[]){
        Frame f = new Frame();
         System.out.print("Visible = True");

        f.setVisible(false);
        System.out.print("Visible = false");
    }
}

after the setVisible(false) command. The JFrame Window still show on my desktop. How can I fix that ?

flag

3 Answers

vote up 2 vote down check

You're creating another JFrame within your constructor. Assuming what you want is your Frame class to be invisible, do this:

class Frame extends JFrame {

   Frame() {
      setBounds(100, 200, 120, 120);
      setTitle("null");
      setVisible(true);
      setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
   }
}

public class test001 {

   public static void main(String Args[]) {
      Frame f = new Frame();
      System.out.print("Visible = True");

      f.setVisible(false);
      System.out.print("Visible = false");
   }
}
link|flag
Thanks! Problem Solved! – jodern Sep 20 at 7:31
Much better to lose the unnecessary subclassing. – Tom Hawtin - tackline Sep 20 at 14:00
(And you're missing the EventQueue.invokeLater boilerplate in main.) – Tom Hawtin - tackline Sep 20 at 14:01
vote up 1 vote down

Problem is that your main method uses different JFrame that your constructor. Your Frame constructor creates new JFrame instance (using new JFrame). When you call f.setVisible(false), it goes to your frame, but not to created JFrame.

link|flag
Ahh.. I see. Now I know whats going on. Thanks! – jodern Sep 20 at 7:32
vote up 0 vote down

The problem here is that your "Frame" class instanciates a new JFrame. Calling setVisible on the Frame does not affect the JFrame which is being shown.

You can fix it by either just using a JFrame instance, or just subclassing. Don't do both.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.