All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.java.rules.squid.S1314.html Maven / Gradle / Ivy

There is a newer version: 8.6.0.37351
Show newest version

Integer literals starting with a zero are octal rather than decimal values. While using octal values is fully supported, most developers do not have experience with them. They may not recognize octal values as such, mistaking them instead for decimal values.

Noncompliant Code Example

int myNumber = 010;   // Noncompliant. myNumber will hold 8, not 10 - was this really expected?

Compliant Solution

int myNumber = 8;

See

  • MISRA C:2004, 7.1 - Octal constants (other than zero) and octal escape sequences shall not be used.
  • MISRA C++:2008, 2-13-2 - Octal constants (other than zero) and octal escape sequences (other than "\0") shall not be used
  • MISRA C:2012, 7.1 - Octal constants shall not be used
  • CERT DCL18-C - Do not begin integer constants with 0 when specifying a decimal value




© 2015 - 2025 Weber Informatics LLC | Privacy Policy