Fixed Statement in C#

后端 未结 5 1760
南笙
南笙 2021-01-17 11:51

We have similar code to the following in one of our projects. Can anyone explain (in simple English) why the fixed statement is needed here?

class TestClass
         


        
相关标签:
5条回答
  • 2021-01-17 12:24

    It fixes the pointer in memory. Garbage collected languages have the freedom to move objects around memory for efficiency. This is all transparent to the programmer because they don't really use pointers in "normal" CLR code. However, when you do require pointers, then you need to fix it in memory if you want to work with them.

    0 讨论(0)
  • 2021-01-17 12:31

    The fixed statement will "pin" the variable in memory so that the garbage collector doesn't move it around when collecting. If it did move the variable, the pointer would become useless and when you used it you'd be trying to access or modify something that you didn't intend to.

    0 讨论(0)
  • 2021-01-17 12:31

    Because you are running in unsafe mode (pointer), the fixed instruction allocate a specific memory space to that variable. If you didn't put the fixed instruction, the garbage collector could move in memory the variable anywhere, when he want.

    Hope this help.

    0 讨论(0)
  • 2021-01-17 12:41

    You need it anywhere you do pointer arithmetic, to prevent the garbage collector from moving it around on you.

    0 讨论(0)
  • 2021-01-17 12:42

    MSDN has a very similar example. The fixed statement basically blocks garbage collection. In .Net if you use a pointer to a memory location the runtime can reallocate the object to a "better" location at any time. SO if you want to access memory directly you need to fix it in place.

    0 讨论(0)
提交回复
热议问题