Home Tutorial Java Scjp Part3 SCJP Module-3 Question-4

 
 

SCJP Module-3 Question-4
Posted on: July 12, 2010 at 12:00 AM
The example given below tests your understanding of static key word in Java and it is helpful for SCJP examination.

Given below the sample code :

class SuperClass {
SuperClass() {
}

static class SubClass {
SubClass() { }

}

}

Which is the correct way to declare the object of "Subclass" , which can be use outside the "Superclass" ?

1. SubClass Sub = new SuperClass().new SubClass();

2. SubClass Sub = new SuperClass.SubClass();

3. SuperClass.SubClass Sub = new SuperClass.SubClass();

Answer :

(3)

Explanation :

Because the inner class "Subclass" is declared 'static' that's why it is declared like this.

Related Tags for SCJP Module-3 Question-4:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.