Answer Posted / chittaranjan
Method overloading: when a method in a class having the
same method name with different number/type of arguments
with the existense of prevoius meaning also is called
method overloading.
Method Overridding: when a method in a class having the
same method name with same number & type of argument(s)
however there mus not be any existense of previous meaning
is said to be method
overridding.
| Is This Answer Correct ? | 10 Yes | 3 No |
Post New Answer View All Answers
Can a private method be declared as static?
What does 0 mean in boolean?
Are constructors methods?
how to one war file class to another war file class?
What is meant by bytecode?
who can i handle multiple client in RMI
These static constructors are correct ? class A { statc intA() { } static A(int x,int y) { } static A(int x) { } }
What is the purpose of skeleton and stub?
What are the characteristics of java?
Can a class extends itself in java?
How does multithreading take place on a computer with a single cpu in java programming?
Which method must be implemented by all threads?
Why java is said to be pass-by-value ?
What is starvation?
Hi all, I am dng a mini project on FileSplitter application which splits the GBs of logfile into Smaller chunks(mbs) depending on the split size." How to handle GBs file? I am getting OutOfMemoryException, when I input such GB sized file. Thx