Final

Whenever we add 'final' in front of a variable, it means we can't change the variable under any circumstances. In this example we use an int variable number, but we…

Continue ReadingFinal

Static

We use the static keyword when we want all the objects to share a single variable. In this program we make 3 new objects that all share the static int…

Continue ReadingStatic