Skip to content

Instantly share code, notes, and snippets.

@tkfx
Created July 5, 2016 15:21
Show Gist options
  • Select an option

  • Save tkfx/a646a6dc8d9fe170ea45a26807381f7e to your computer and use it in GitHub Desktop.

Select an option

Save tkfx/a646a6dc8d9fe170ea45a26807381f7e to your computer and use it in GitHub Desktop.
// Bad.
// - Field names give little insight into what fields are used for.
class User {
private final int a;
private final String m;
...
}
// Good.
class User {
private final int ageInYears;
private final String maidenName;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment