Вы находитесь на странице: 1из 6

6 important .NET concepts: - Stack, heap, Value types, reference type... http://www.codeproject.com/Articles/76153/6-important-NET-conc...

Sign up for our free weekly Web Developer Newsletter.

Plat forms, Frameworks & Libraries .NET Framework General

6 important .NET concepts: - Stack, heap, Value types, reference types, boxing and Unboxing.
By Shivprasad koirala | 13 Feb 2012 | Unedited contribution
.NET1.0 .NET1.1 .NET2.0 SQL2000 SQL2005 VS.NET2003 VS2005 SQL-CE C#1.0 C#2.0

Licence First Posted Views Bookmarked

CPOL 27 Apr 2010 182,928 293 times

,+

6 important .NET concepts: - Stack, heap, Value types, reference types, boxing and Unboxing.
4.89 (172 votes)

6 important .NET concepts: - Stack, heap, Value types, reference types, boxing and Unboxing.

Introduction What goes inside when you declare a variable? Stack and Heap Value types and reference types So which data types are ref type and value type? Boxing and Unboxing Performance implication of Boxing and unboxing Source code

This video explains the concept of boxing and unboxing and it also shows the performance implications caused by the same.

Introduction
This article will explain 6 important concepts Stack , heap , value types , reference types , boxing and unboxing. This article starts first explaining what happens internally when you declare a variable and then it moves ahead to explain 2 important concepts stack and heap. Article then talks about reference types and value types and clarifies some of the important fundamentals around them. Finally the article concludes by demonstrating how performance is hampered due to boxing and unboxing with a sample code. Watch my 500 videos on various topics like design patterns,WCF, WWF , WPF, LINQ ,Silverlight,UML, Sharepoint ,Azure,VSTS and lot more click here , you can also catch me on my trainings @ click here.

1 de 6

21/03/2012 8:19

6 important .NET concepts: - Stack, heap, Value types, reference type... http://www.codeproject.com/Articles/76153/6-important-NET-conc...

Image taken from http://michaelbungartz.wordpress.com/

What goes inside when you declare a variable?


When you declare a variable in a .Net application, it allocates some chunk of memory in to the RAM. This memory has 3 things first the name of the variable, second data type of the variable and finally the value of the variable. That was a simple explanation of what happens in the memory, but depending on what kind of data type your variable is allocated on that type of memory. There are two types of memory allocation stack memory and heap memory. In the coming sections we will try to understand these two types of memory in more details.

Stack and Heap


In order to understand stack and heap, let understand what actually happens in the below code internally. s
public void Method1() { // Line 1 int i=4; // Line 2 int y=2; //Line 3 class1 cls1 = new class1(); }

It a 3 line code so let understand line by line how things execute internally. s s Line 1:- When this line is executed compiler allocates a small amount of memory in to memory type called as stack. Stack is responsible of keeping track of running memory needed in your application. Line 2:- Now the execution moves to the next step. As the name says stack it stacks this memory allocation on the top of the first memory allocation. You can think about stack as series of compartment or boxes put on top of each other. Memory allocation and de-allocation is done using LIFO (Last in first out) logic. In other words memory is allocated and de-allocated at only one end of the memory i.e. top of the stack. Line 3:- In line 3 we have a created an object. When this line is executed it creates a pointer on the stack and the actual object is stored in a different type of memory location called as Heap . Heap does not track running memory it just pile of objects which can s reached at any moment of time. Heap is used for dynamic memory allocation. One more important point to note here is reference pointers are allocated on stack. The statement, Class1 cls1; does not allocate memory for an instance of Class1, it only allocates a stack variable cls1 (and sets it to null). The time it hits the new keyword it allocates on "HEAP". Exiting the method (The fun):- Now finally the execution control starts exiting the method. When it passes the end control it clears all the memory variables which are assigned on stack. In other words all variables which are related to data type are de-allocated int in LIFO fashion from the stack. The BIG catch It did not de-allocate the heap memory. This memory will be later de-allocated by GARBAGE COLLECTOR .

2 de 6

21/03/2012 8:19

6 important .NET concepts: - Stack, heap, Value types, reference type... http://www.codeproject.com/Articles/76153/6-important-NET-conc...

Now many of our developer friends must be wondering why two types of memory, canwe just allocate everything on just one t memory type and we are done. If you look closely primitive data types are not complex, they hold single values like i = 0Object data types are complex, they int . reference other objects or other primitive data types. In other words they hold reference to other multiple values and each one of them must be stored in memory. Object types need dynamic memory while primitive needs static type memory. If the requirement is of dynamic memory it allocated on a heap or else it goes on a stack. s

Image taken from http://michaelbungartz.wordpress.com/

Value types and reference types


Now that we have understood the concept of Stack and Heap s time to understand the concept of value types and reference types. it Value types are types which hold both data and the memory on the same location. While a reference type has a pointer which points to the memory location. Below is a simple integer data type with name whose value is assigned to an other integer data type with name . Both these i j memory values are allocated on the stack. When we assign the value to the other value it creates a complete different copy. In other word if you change either of them int int the other does not change. These kinds of data types are called as Value types .

When we create an object and when we assign one object to the other object, they both point to the same memory location as show in the below code snippet. So when we assign to obj obj1 they both point to the same memory location. In other words if we change one of them the other object is also affected this is termed as Reference types .

3 de 6

21/03/2012 8:19

6 important .NET concepts: - Stack, heap, Value types, reference type... http://www.codeproject.com/Articles/76153/6-important-NET-conc...

So which data types are ref type and value type?


In .NET depending on data types the variable is either assigned on the stack or on the heap. String and Objects are reference types and any other .NET primitive data types are assigned on the stack. Below figure explains the same in a more detail manner.

Boxing and Unboxing


WOW, you have given so much knowledge, so what the use of it in actual programming. One of the biggest implications is to s understand the performance hit which is incurred due to data moving from stack to heap and vice versa. Consider the below code snippet. When we move a value type to reference type the data is moved from the stack to the heap. When we move reference type to a value type the data is moved from the heap to the stack. This movement of data from the heap to stack and vice-versa creates a performance hit. When the data moves from value types to reference types its termed as Boxing and the vice versa is termed as UnBoxing .

4 de 6

21/03/2012 8:19

6 important .NET concepts: - Stack, heap, Value types, reference type... http://www.codeproject.com/Articles/76153/6-important-NET-conc...

If you compile the above code and see the same in ILDASM you can see in the IL code how boxing and unboxing looks, below figure demonstrates the same.

Performance implication of Boxing and unboxing


In order to see how the performance is impacted we ran the below two functions 10,000 times. One function has boxing and the other function is simple. We used a stop watch object to monitor the time taken. The boxing function was executed in 3542 MS while without boxing the code was executed in 2477 MS. In other words try to avoid boxing and unboxing. In project you always need boxing and unboxing , use it when it absolutely necessary. s With the same article the sample code is attached which demonstrates this performance implication.

5 de 6

21/03/2012 8:19

6 important .NET concepts: - Stack, heap, Value types, reference type... http://www.codeproject.com/Articles/76153/6-important-NET-conc...

Currently I have not put a source code for unboxing but the same hold true for the same. You can write the same and experiment it by using stopwatch class.

Source code
Attached with article is a simple code which demonstrates how boxing creates performance implications. You can download the source code from here

License
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author


Shivprasad koirala I am a Microsoft MVP for ASP/ASP.NET and currently a CEO of a small E-learning company in India. We are very much active in making training videos , writing books and corporate trainings. Do visit my site for .NET, C# , design pattern , WCF , Silverlight , LINQ , ASP.NET , ADO.NET , Sharepoint , UML , SQL Server training and Interview questions and answers

Architect http://www.quest pond.com India Member

Comments and Discussions


125 messages have been posted for this article Visit http://www.codeproject.com/Articles/76153/6-importantNET-concepts-Stack-heap-Value-types-re to post and view comments on this article, or click here to get a print view with messages.
Permalink | A dvertise | Privacy | Mobile W eb04 | 2.5 .120315 .1 | Las t Updat ed 14 Feb 2012 Ar ticle Co pyright 2010 by Sh ivprasad koirala Everyt hing else Co pyright C odeProject, 1999-2012 Terms of Us e

6 de 6

21/03/2012 8:19

Вам также может понравиться