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
what are the high-level thread states? : Java thread
Do extraneous variables affect validity?
How transient variable is different from volatile variable?
What kind of variables can a class consist?
Give differences between Quicksort & Mergesort. When should these sorts be used and what is their running time?
What is Major and importance difference between for and foreach loop ?
What does provide mean construction?
What is a heavyweight component?
What are the different types of inheritance in java?
Explain what is Marker interface?
What is a ternary operator in java?
what is session in java?
Can a static block throw exception?
What is a vararg?
Why string is not a wrapper class?