Applying Class Access Modifiers Flashcards
Define a top level java class !
A top-level class is a class that is declared with the public access modifier and resides in its own .java file
Which access modifiers can be applied to a top level java class ?
Classes at the top level (outside of other classes and interfaces ) not nested within other classes or interfaces can only have the public and the package-private default access modifiers
Define each one of them !
public class : means that the class can be accessed from inside and outside the package
package-private class : means that the class can only be accessed from inside the same package
How many public classes/interfaces can we have in one java file ?
We can only have one public class in one java file.
We can only have one public interface in a java file.
We can not have a public class and a public interface in the same java file.
Which access modifiers can be applied to a top level interface ?
A top level interface (an interface that is not nested within other interfaces) can only have public or default access modifiers