Static Java

"static" is a keyword used as an access modifier. Novices confuse between access specifiers and access modifiers. Access specifiers are public, protected etc. and access modifiers are static, final, abstract etc. As their names indicate, access specifier specifies the access to the class by other classes and access modifier modifies the access. For example, generally …

Static Java Read More »