variables | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

variables

why sometimes we should put public static in case of declaring variables in java?

1st Mar 2018, 1:18 PM
Justin Codes
Justin Codes - avatar
1 Answer
0
*Public and access modifiers in general: One of the main principle of OOP is 'information hiding', which means that objects don't reveal all of their details to the outside world. Java has access modifiers to restrict access to members of classes, traits, objects and packages. Access Modifiers control how much of an object is visible to the rest of Java program, and packages provide the highest level of control over object visibility. More about access modifiers : http://net-informations.com/java/basics/modifiers.htm *Static: static members belong to the class instead of a specific instance. It means that only one instance of a static field exists even if you create a million instances of the class or you don't create any. It will be shared by all instances.
1st Mar 2018, 2:22 PM
J Domingo Jiménez J
J Domingo Jiménez J - avatar