Back to Intellij Community

StandardVariableNames

java/java-impl/resources/inspectionDescriptions/StandardVariableNames.html

2025.3-rc-2445 B
Original Source

Reports variables with 'standard' names that do not correspond to their types. Such names may be confusing. There are the following standard names for specific types:

  • i, j, k, m, n - int
  • f - float
  • d - double
  • b - byte
  • c, ch - char
  • l - long
  • s, str - String

Rename quick-fix is suggested only in the editor.

Use the option to ignore parameter names which are identical to the parameter name from a direct super method.