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 is return in java?
Why is the main method static?
What are selection structures?
What is a void method java?
What is use of super keyword?
What is collection class in java?
What is an array in java?
What is string manipulation?
What are the skills required for core java?
What is final variable?
What is difference between ++ I and I ++ in java?
What is the benefit of singleton pattern?
What is local class in java?
How are this() and super() used with constructors in java programming?
What is a short in java?