Modifier-Static

= a modifier that marks program structures (e.g. functions), which are not bound to an instance

๐Ÿ“– Example:

public final class Math {
	// PI should be the same for every instance of Math
    public static final double PI = 3.14159265358979323846;
}