05.04.2016 Views

Optimizing Mobile Applications

DAY1_1330_Room1_HarknessDundore_Long_Big

DAY1_1330_Room1_HarknessDundore_Long_Big

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Memory Conservation: Boxing<br />

• Happens when passing a value type as a reference type.<br />

• Value is temporarily allocated on the heap.<br />

• Example:<br />

int x = 1;<br />

object y = new object();<br />

y.Equals(x);<br />

// Boxes “x” onto the heap

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!