Skip to content

Variables

Isfirs edited this page Aug 22, 2016 · 5 revisions

Naming

  • Named in lowerCamelCase convention.

Flags

  • Declare once instanciated variables as final.
/**/
public void someMethod( )
{
    final String neverChanged = "foobar";
    // Other method content
}
/**/