What are Value Types from Project Valhalla?

后端 未结 4 615
说谎
说谎 2021-02-02 08:07

I\'ve started reading about Project Valhalla and there is something I really don\'t understand and it\'s the Value Types.

This is what I understand:

4条回答
  •  北海茫月
    2021-02-02 08:43

    Your final assertion is correct. The ValueType variables are entirely copied when passing them as a parameter to a function, rather than typically just getting a copy of the reference to an object. This allows you to treat a small object as if it were a value type like int or boolean.

提交回复
热议问题