Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 974047
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T03:22:20+00:00 2026-05-16T03:22:20+00:00

its a maybe a dumb question but i am curious to understand this thing….

  • 0

its a maybe a dumb question but i am curious to understand this thing….
The below code works but the one below that doesn’t work.

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class Menu extends JFrame
{

public Menu()
{

JMenuBar menubar = new JMenuBar();
ImageIcon icon = new ImageIcon("exit.png");
JMenu file = new JMenu("File");
file.setMnemonic(KeyEvent.VK_F);
JMenuItem fileClose = new JMenuItem("Close",icon);
fileClose.setMnemonic(KeyEvent.VK_C);
fileClose.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent event)
{System.exit(0);}
});


file.add(fileClose);
menubar.add(file);
setJMenuBar(menubar);


setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setSize(300,200);
setLocationRelativeTo(null);
}


public static void main (String args[])
{
new Menu();
}


}

The below one doesn’t work

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class Menu extends JFrame
{

public Menu()
{


setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setSize(300,200);
setLocationRelativeTo(null);

JMenuBar menubar = new JMenuBar();
ImageIcon icon = new ImageIcon("exit.png");
JMenu file = new JMenu("File");
file.setMnemonic(KeyEvent.VK_F);
JMenuItem fileClose = new JMenuItem("Close",icon);
fileClose.setMnemonic(KeyEvent.VK_C);
fileClose.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent event)
{System.exit(0);}
});


file.add(fileClose);
menubar.add(file);
setJMenuBar(menubar);


}


public static void main (String args[])
{
new Menu();
}


}

I thought Java supports free style coding !!! (that’s what it says in my Book)

PS: Please Someone Edit the Tile to suit the question correctly, I am not sure what to put in Title.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T03:22:20+00:00Added an answer on May 16, 2026 at 3:22 am

    The issue in your 2nd code sample is that you are calling setVisible before you actually add stuff to the GUI. Your saying “Here’s some stuff, now show” while in the second one your saying “Show, now here’s some stuff“

    Fix: Move setVisible to the end of the constructor

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Maybe its a very dumb question but I hope you can give me some
So maybe this is a dumb question and I'm over thinking this, but I
This may be a dumb question, but why is the below for loop going
Maybe this is a dumb question, but I have the following behavior in Visual
Maybe its a stupid question, but i'm having this issue in Visual Studio 2010:
Maybe this is a very rare (or even dumb) question, but I do need
This may be a dumb question, but that fuzzy blue color that you get
Yeah, I know this seems like a dumb question, its just a one-off hack
Introspection tells me that django fields have a hidden_widget attribute. Maybe its not this
I feel like this may be a dumb question, but it's late and my

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.