Trail: Learning the Java Language
Lesson: Classes and Objects
Questions and Exercises
Home Page > Learning the Java Language > Classes and Objects
Questions and Exercises: Nested Classes

Questions

1. The program Problem.java doesn't compile. What do you need to do to make it compile? Why?

2. Use the Java API documentation for the Box class (in the javax.swing package) to help you answer the following questions.

a. What static nested class does Box define?
b. What inner class does Box define?
c. What is the superclass of Box’s inner class?
d. Which of Box’s nested classes can you use from any class?
e. How do you create an instance of Box’s Filler class?

Exercises

1. Get the file Class1.java.

Compile and run Class1. What is the output?
Check your answers.

Previous page: Summary of Nested Classes
Next page: Enum Types