why do we use Overloading, Overriding, Boxing, Unboxing,
and what is the use of these ?
Answer Posted / vijay rana
overloding:- if we want to use a function which have
different behaviour in different situation means for
different signature it behaves differently it is called
function overloding
overriding:- if we want a function which have the same
behaviour in the supercalss as well as in the subclass also
and in the case of overriding method signature and return
type should be same , it is called method overriding
boxing:
if we want to convert a value type value in an object it
is called boxing
for example
int m=10;
object om=10;
it does not require any explicitly conversion
unboxing:-unboxing means when we want to convert a object
type to a value type , it is called unboxing
int m=10
object om=m;
byte n=(byte)om;
| Is This Answer Correct ? | 30 Yes | 6 No |
Post New Answer View All Answers
What is yield return in c#?
Explain “static” keyword in c#?
What is the difference between field and variable in c#?
Can constructor have return type c#?
Is functional interface runnable?
What is difference between il and dll ?
What is a boolean c#?
Define delegation in .net?
Why do we use abstract class in c#?
What is class in oops with example in c#?
Can we make a Static Constructor Parameterized? Give Reason with your answer
What are the properties in c#?
Is it not possible to store a boolean value as a variable?
Why dictionary is used in c#?
Which is the base class in c#?