I am trying to find documentation on how best to access class attribute properties such as private / protected / public, final, static, type.
I will post an example to understand what I mean.
class A {
public final static int FOO = 3;
final public static int FOO = 3;
}
Well, I assume that the type attrbiute (int, String, char) precedes the attribute name.
My real doubt is that I'm trying to set static, final and v
user591272
source
share