Is it possible to do method overloading and overriding at a
time
Answer Posted / shashi
Yes, Is it possible to do method overloading and overriding at a
time
***********************************************
class A
{
void Add(int x, int y)
{
System.out.println("Hello From Class A" + (x+y));
}
}
class B extends A
{
void Add(int x, int y)
{
System.out.println("Hello From Class B" + (x+y));
}
void Add(double x, double y)
{
System.out.println("Hello From Class B" + (x+y));
}
}
class Test
{
public static void main(String ar[])
{
B acv = new B();
acv.Add(100.0,20.0);
acv.Add(10,20);
}
}
| Is This Answer Correct ? | 19 Yes | 0 No |
Post New Answer View All Answers
Is zero a natural number?
How do you compare two strings lexicographically?
Can we have any other return type than void for main method?
Give any two differences between C++ and java.
EDS (Electronic Data Systems India Pvt Ltd) at Chennai on 16-12-2006.
When should you make a function static?
What is a generic data type?
Which is faster call by value or call by reference?
Explain about main thread in java?
What is the difference between pass by reference and pass by pointer?
Which java version is latest?
Why is stringbuffer faster than string?
What is dynamic binding(late binding)?
What is java util concurrentmodificationexception?
Explain about instanceof operator in java?