Object-oriented programming in Java.
If class method is defined by the subclass with similar sign as that of class method which is present in superclass, then in subclass the method present will be hiding the one which is present in superclass. Distinction b/w overriding and hiding possess certain important implication. Overridden method’s version which is invoked is that one which is present in subclass. Hidden method’s version which is invoked is totally dependent upon whether it gets invoked by the subclass or superclass. ...
Static variables as well as static methods are supported by the Java programming language. Static methods which consists of the static modifiers shall be invoked along with the class name with no need to create the class instance, as in Java Code: ClassName.methodName(args) One of the most common use, for the static method, is the static file access. For instance, static method would be added to the Bicycle class for accessing static field of numberOfBicycles. Java Code: public ...
ClassName.methodName(args)
public
thanks...
sorry for all the questions
thanks...
06-14-2013, 02:22 PM in gbonecapone