CLR in C # notes--Boxing and unpacking

Source: Internet
Author: User

Value types are lighter than reference types because they are not allocated as objects in the managed heap, are not garbage collected, and are not referenced by pointers, but sometimes need to get instance references to value types

struct point{    publicint  x, y;           }  Public class program{    publicvoid  main ()    {         ArrayList a=new ArrayList ();          New Point ();          1 ;         A.add (P);    }}            

To view the Add method prototype in ArrayList:

Public virtual Int32 Add (Object value);

Add gets an object parameter, which is a reference type parameter, but a value type reference is passed in the code, in order for the code to fetch work, the point value type must be converted to an object on the managed heap, and a reference to the object must be obtained

The value type

CLR in C # notes--Boxing and unpacking

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.