what is overloading in java?
Answer Posted / ak
Overloading is when the same method or operator can be used
on many different types of data.
For instance the + sign is used to add ints as well as
concatenate strings. The plus sign behaves differently
depending on the type of its arguments. Therefore the plus
sign is inherently overloaded.
Methods can be overloaded as well..same method with
different parameters is said to be method overloading.----
we can perform the similar operation in different ways for
different parameters.
Constructors can be overloaded as well...Overloaded
constructors provide multiple ways to initialize a new object
| Is This Answer Correct ? | 69 Yes | 12 No |
Post New Answer View All Answers
Is an integer an object?
what are three ways in which a thread can enter the waiting state? Or what are different ways in which a thread can enter the waiting state? : Java thread
Write a program to print count of empty strings in java 8?
What are aggregate functions explain with examples?
how to create multithreaded program? : Java thread
Define how objects are stored in java?
What data type is true or false?
What is the collection interface?
What is object of class in java?
Explain why wait(), notify() and notifyall() methods are in object class rather than in the reading class?
What is the default value of an object reference declared as an instance variable?
How do you replace all in word?
How do you control extraneous variables?
what is thread in Java ?
What is a vararg?