Java Modifiers
Java Modifiers
Access Modifiers
Non-Access Modifiers
Access Modifiers
Access Modifiers
For classes
public
default
private
Private Constructors
Caution
default
protected
The protected access modifier let the subclass access protected methods
and variables, even they aren't located in the same package.
⇒ can't use the private, protected and default modifiers ⇒ always public
Access Modifiers and Inheritance
The subclass 's method methods can't have less accessible access modifiers
assigned to them than they had in the superclass.
Ex: if a method in the superclass is protected, in case the subclass overrides the
methods, it must be either protected or public in the subclass.
Non-Access Modifiers
For classes
final
abstract
final
static
abstract
Can only be used in an abstract class, and can only be used on methods.
File: First.java
transient
Attributes and methods are skipped when serializing the object containing
them
synchronized
volatile