A good answer might be:When the program is running:
| |
Picture of the FrameAlthough the class ezGUI1 has been defined it is not instantiated. The main() method is a static part of that class, not part of any object. Review the beginning chapter on objects (currently chapter 25) if this is unclear. Here is a picture of what is going on:
Although the main() method is static, it can ask to create an object (with new) and its variable frm can refer to that object in main memory. The object is a Frame object which the Java system uses to paint what you see on the monitor. | |
QUESTION 9:
If you change |