Interfaces & Inner Classes Flashcards
An interface is not a class.
True.
Interfaces contain method definitions.
False - they usually only contain method headings.
Interfaces can contain constant definitions.
True.
Interface can never give a definition to its own method.
False - default methods (as of Java 8) have definitions. But generally, no.
Interfaces solve which Java restriction?
Java’s restriction on multiple inheritance.
An interface and all of its method headings should be declared public.
True.
An interface can give private/protected/package access to methods in specific circumstances.
False.
When a class implements an interface, that class can decide to make specific methods private.
False - they must all remain public.
A method may be written with a parameter of an interface type.
True - this parameter accepts any class that implements the interface.
Method headings in interfaces must end in a semicolon.
True.
Write a class header for class “C” that implements 3 interfaces (I1, I2, and I3).
public class C implements I1, I2, I3 {…}
How many of the methods listed in the interface(s) definition(s) must be defined by the class implementing them?
All methods listed must be implemented.
Abstract classes cannot implement interfaces.
False - they may implement 1+ interfaces.
Abstract classes must define all methods listed in the interface(s) they implement.
False - abstract classes do not need to provide implementation - this is left for the concrete class to do.
Interfaces can be derived from other interfaces.
True.
Write the header for an Interface “I1” that extends another interface, “I2”.
public interface I1 extends I2 {…}
Variables defined in an interface must be public, static, and final.
True.
The public, static, and final modifiers must precede all variables defined in an interface.
False, they may be omitted since the compiler understands that they must already be public, static, and final.
What are the 2 possible cases of inconsistent interfaces?
Constants with the same name, but different values, and methods with the same name, but with different return types.
The Serializable interface is completely empty.
True.
The Cloneable interface is completely empty.
True.
Object.clone() does a bit-by-bit copy of the object’s data in storage. This is adequate behaviour for what types of Objects?
For immutable class types.
What Exception is thrown when the Object’s clone() method is called on an instance that does not implement cloneable?
CloneNotSupportedException
CloneNotSupportedException is a checked exception.
True.
How do you implement Cloneable for a class with mutable class type attributes?
Invoke clone() of the base class, then reset the values of mutable instance variables by invoking their respective clone methods.
Cloneable can be implemented for all classes with mutable attributes.
False - Cloneable can only be properly implemented if the interface is already implemented for the mutable attributes.
Inner classes must be defined at the beginning of the outer class’s definition.
False - its location is irrelevant.
The name of an inner class may be reused for something outside the outer class definition.
True - it is local to the outer class.
The outer class has access to the inner class’s private methods/attributes.
True.
The inner class has access to the outer class’s private methods/attributes.
True.
The inner class should always be marked private.
False - not if the inner class is used outside the outer class.
It is legal to invoke a (non-static) method of the inner class from the outer class, on an object of the outer class.
False, an object of the inner class must be used as a a calling object.
Within the definition of the inner/outer classes, the modifiers public and private are equivalent.
True.
When a class with an inner class is compiled, 2 separate .class files are produced.
True.
If the outer class name is C1, and the inner class name is C2, then what would be the names of the .class files following compilation?
C1.class and C1$C2.class.
When must an inner class be static? (2)
If an object of the inner class is created within a static method of the outer class, and if the inner class must have static members.
Can instance variables of the outer class be referenced by a static inner class?
No.
Can methods of the outer class be referenced by a static inner class?
Only static methods of the outer class can be invoked.
Can an outer class reference static methods/variables of its static inner class?
Yes, if their invocation is prefaced with the name of the inner class and a dot.
An inner class marked public can be used outside the outer class.
True.
An instance of a non static inner class can be created before creating an instance of the outer class.
False - It must be created using an object of the outer class.
Create an instance of an inner class C2, if the outer class is C1 (use default constructors).
C1 c1 = new C1();
C1.C2 c2 = c1.new C2();
An instance of the inner class can invoke methods of the outer class.
False - it can only invoke methods from the inner class.
You can create instances of static inner classes.
True.
Write code that would create an instance of a static inner class (C2), if the outer class is C1.
C1.C2 c2object = new C1.C2();
The following is valid:
innerObject.InnerNonstaticMethod();
True.
The following is valid:
innerStaticObject.InnerStaticMethod();
True.
The following is valid:
OuterClass.InnerStaticClass.InnerNonstaticMethod();
False.
The following is valid:
OuterClass.InnerStaticClass.InnerStaticMethod();
True.
The following is valid:
InnerStaticObject.OuterMethod();
False.
Outer non-static methods can be called from a static inner class’s methods.
False.
Outer static methods can be called from a static inner class’s methods.
True.
If a method is invoked in the inner class, and there exists a method by that name in both the outer and inner classes, which is invoked?
The inner class method.
If there exists a method in both the outer and inner classes with the same name, how would you invoke the outer class’s method?
OuterClassName.this.methodName();
Can you nest classes within already nested classes?
Yes.
Create an instance of class C, if class C is nested in class B, and class B is nested in class A.
A a1 = new A();
A.B b1 = a1.new B();
A.B.C c1 = b1.new C();
An outer class can be a derived class.
True.
An inner class can be a derived class.
True.
If class A is nested with class B, and class C extends class A, will class C automatically have B as an inner class?
Yes.
If class A is nested with class B, and class C extends class A, can class C override the nested class B?
No.
Instantiate an instance of an anonymous class that extends the Car class, whose only (additional) attribute is (int) numberOfWheels.
Car c1 = new Car() {
private int numberOfWheels;
};
The type assigned to an anonymous class must already exist.
True.
The type assigned to an anonymous class can be an interface.
True - in fact it most often is.