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
Which collection is thread safe in java?
Which java version is latest?
What are the advantages of packages in java?
What is wrapper class html?
Can an integer be a string?
Can we declare the main method of our class as private?
Can an object subclass another object?
Where is jre installed?
What is garbage collection? What is the process that is responsible for doing that in java?
What is increment in java?
Can we return null in java?
What is multithreading and its advantages?
When will you define a method as static in Java?
What is a variable analysis?
What is the purpose of garbage collection in java, and when is it used?