What is immutability and why should I worry about it?

前端 未结 15 1048
无人共我
无人共我 2020-12-07 09:51

I\'ve read a couple of articles on immutability but still don\'t follow the concept very well.

I made a thread on here recently which mentioned immutability, but as

15条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-07 10:49

    Let me add one more thing. Besides all that was mentioned above you also want immutability for:

    • value objects (sometimes also known as data objects or pojo)
    • structs (in C#/.NET) - see stackoverflow question about boxing

提交回复
热议问题