Hello,
I'm busy with studying the
Java OCP 17 by the Java Study Guide. In chapter 7 table 7.2 Interface member Acces, I do not understand exactly what is meant by:
column header 3:
"Accessible from methods in classes inheriting the interface" (see attachement)
column header 4:
"Accessible without an instance of the interface?" (see attachement)
Column 3: what is exactly meant by "inheriting the interface"? Is that the keyword
implements?
Is this what they are saying here?
Colunm 4: And if the class doesn't implement the interface, than by instantiate the class there is not any "instance" of the interface, but you can access the constant variable (because public static final) and the static method by interface name.
Is this what they are saying here?
Can anyone confirm this or am I complete wrong?