The static import is a new feature of J2SE 5.0 that allows unqualified access to static members without inheriting from…
August 25th, 2009
Difference between abstract classes and interfaces
No Comments, Java Facts, by Daisy Williams.Abstract class: In java, an abstract class is a class that is partially implemented. It provides design convenience. An abstract…
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….
August 22nd, 2009
Variable arity methods
No Comments, Java Facts, by Daisy Williams.A variable arity method allows the number of arguments in a method call to be varied. Invocations of this method…