public class Bicycle { private int cadence; private int gear; private int speed; private int id; private static int numberOfBicycles = 0; p
From within the class the Bicycle qualifier is optional on static variables, just like the this qualifier is optional on instance variables
Bicycle
this