what is mean by overriding in which situation we wil use?
Answers were Sorted based on User's Feedback
Answer / ramana
override methos have same method name with same
signature.which methods are apper in super class to sub
class.
| Is This Answer Correct ? | 14 Yes | 2 No |
Answer / vikas
Overriding means, In a derived class, if we include same
method name, with same number & types of parameters and
return type as a method already defined in the base class,
then the method is said to be Overridden.
base class:
class Circle {
protected double radius;
public double getArea() {
return Math.PI*radius*radius;
}//this method returns the area of the circle
}
derived class:
class Cylinder extends Circle {
protected double length;
public double getArea() { // method overriden here
return 2*super.getArea()+2*Math.PI*radius*length;
}//this method returns the cylinder surface area
}
| Is This Answer Correct ? | 7 Yes | 1 No |
According to J2ee Compleet reference java:
I Think the answer is that
Overriding means the : In inheritance If we Declare the
(Public of default) Method in the superclass Similarly we
declare the method with the same name ,Same type,same
number of parameters.but the Body of the method May
different When We Instansiate child class and access it
then child's method will called if u want to call super's
overriden method then use the [super()] method to access it
in child for this read [Java compleete reference's
Chapter#8] u will find reasonable answer
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / rishi
Whenever we use same mathod with the same signature that we
call mathod overloding and we use it, when we use
inharitence or abstract class.
| Is This Answer Correct ? | 1 Yes | 2 No |
What is main string [] args?
What is thread safe singleton?
What is string pool in java?
What are the differences between heap and stack memory in java?
Does .length start 0 java?
What is an object’s lock and which object’s have locks?
Is string a class?
Why hashset is used in java?
Do you know why doesn't the java library use a randomized version of quicksort?
How to deprecate a method? Show it with proper example. Plz give the answer of this.Thanx in advance. mail me: tanzeem.akhtar@gmail.com
What is map and hashmap? also tell the difference.
What is use of super keyword?