I have 2 Examples (A & B), I like “B” just cause it’s neat
Example A
private float x = 0f;
private float y = 8f;
private float z = 55f;
Example B
private float x = 000f;
private float y = 008f;
private float z = 055f;
Is there really any difference between the 2 Examples?
They both seem to work the same
@BoredMorman is correct, leading zeros are not observed and considered not significant. [Significant Figures][1] [1]: http://en.m.wikipedia.org/wiki/Significant_figures
– Landern