I'm trying to find documentation on what is the best way to order to properties of a class attribute, such as private/protected/public, final, static, type.
I'll post an example to see what I mean.
class A {
public final static int FOO = 3;
final public static int FOO = 3;
}
Ok, I assume the attrbiute type (int, String, char) goes before the name of the attribute.
My real doubt is when I try to position static, final, and the v
以上就是class attributes declaration, order of the attributes' properties (final, private, static, type)的详细内容,更多请关注web前端其它相关文章!