| Author |
why use static method in creating gui
|
amit sharma
Ranch Hand
Joined: Jul 19, 2006
Posts: 129
|
|
I am to new to swing.When i search tutorial for swing i see that most of them create gui in static method .What is the purpose of it .When i make gui in static method i am not able to add listener for it.Can anyone please tell me what is the preferred way of developing desktop application using swing. Thanks
|
 |
Gregg Bolinger
Ranch Hand
Joined: Jul 11, 2001
Posts: 15230
|
|
I assume you are talking about something like this: The reason that createAndShowGUI() is static is because it's being called from a static method, main(String[] args). You can not call non-static methods from a static method, so createAndShowGUI() has to be static.
|
 |
 |
|
|
subject: why use static method in creating gui
|
|
|