What is Boxing and Unboxing?
Answer Posted / kumaresh
BOXING: Converting value type to referenc type.
Here we go with an example,
ArrayList instance = new ArrayList()
//In the above line of code,ArrayList is a reference
type.Add some items to the arraylist. For example,
instance.Add(1);
instance.Add(100);
instance.Add(3);
//3 items added to the arraylist.
//Integer valuee 3 is value type.Adding 3 to the reference
type(here it's arraylist) is boxing.
i.e., Converting value type to referenc type.
UNBOXING:Converting Reference type to value type.
Below is an example, retrives the items from the
arraylist.
foreach (int item in arrayList)
Console.WriteLine(item);
Here arraylist(referenec type) will have 3 values in the
list, which we added above.
Adding this arraylist items to an int variable[here int
variable is "item"] is unboxing.
i.e.,converting the reference type to value type.
Hope you would have understood.
Thanks
Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Which data type does the rangevalidator control support?
Describe the master page.
How do you declare delegates and are delegates and events one and the same and explain how do you declare delegates and invoke them ?
What is the most appropriate lifetime for a database connection/orm context in an asp.net mvc application? : Asp.Net MVC
Why select Web API?
If you want to write your own dot net language, what steps you will you take care?
Which is better session or viewstate?
Tell me the code snippet to show how we can return 404 errors from HttpError?
How can you display all validation messages in one control?
What is the life-span of the items in the viewstate?
Define transparent caching with aop?
Explain Areas in MVC?
witch is the best insistute in sharpoint course.what abt future of share point course.
Describe the disadvantage of cookies.
Explain Life cycle of ASP.NET page when a request is made.