The package statement is used to declare packages. The word package is a keyword in Java. This statement is not…
September 1st, 2009
The this keyword
No Comments, Java Facts, by Daisy Williams.The this keyword refers to the currently executing instance of a class. It is commonly used to access members from…
August 29th, 2009
What is an instanceOf operator?
No Comments, Java Facts, by Daisy Williams.The instanceof operator is a binary operator that determines at runtime whether its left operand is an instance of its…
August 24th, 2009
7 key points about abstract classes and methods.
No Comments, Java Facts, by Daisy Williams.If a class does not implement any or all of an interface method, then it should be declared as abstract….