Distinguish method overloading and overriding
Answer Posted / pralay
Method Overloading is functionality of java in which we can
declare many method with same name but different signature
in one class, but Overriding is a the process of declare a
method which is already define in super class, this Method
has same name and same signature as super class.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
I want to persist data of objects for later use. What is the best approach to do so?
Explain the difference between map and flatmap stream operation?
What is the purpose of assert keyword used in jdk1.4.x?
Can you make a constructor final in Java?
Where are the card layouts used?
What is charat java?
Which is better stringbuffer or stringbuilder?
Can we call virtual funciton in a constructor ?
What does s mean in regex?
How many return statement are allowed in a function?
What is the difference between a field variable and a local variable?
what is the messsage u r going to get from an objectoriented programing?
What is null object in java?
Why Java is not pure Object Oriented language?
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