Recent Posts

The instanceof Operator

2 minute read

The instanceof operator is a great way for checking if a reference variable is of a given type, in other words, does it pass the IS-A inheritance test. Ask y...

Compound Assignment Operators

less than 1 minute read

There are various compound assignment operators, however it is only necessary to know the 4 basic compound assignment operators for the exam, being as follow...

Static members

1 minute read

Statics are a rather strange beast, they belong to no instance of a class, they have no fixed abode, other than their class..

Other modifiers, for members

2 minute read

We’ve already touched upon various modifiers, for classes (both access and non-access), but there are also some more modifiers for members, as detailed here.