Why is this an issue?

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;

Resources