Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
thetaIndex
phiBins
binValues

No distinction is made between local variables and member variables as far as naming conventions.
To disambiguate local and member variables, use the this keyword.

For instance, this is a perfectly valid way of assigning a member variable that has the same name
as the method argument.

No Format

void setFoo(int foo)
{
    this.foo = foo;
}

Interfaces and Implementations

...