Read only two-dimensional array in C#

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-23 07:28:00

问题


Is there any established way of returning a read-only 2-d array in C#?

I know ReadOnlyCollection is the right thing to use for a 1-d array, and am happy to write my own wrapper class that implements a this[] {get}. But I don't want to reinvent the wheel if this wheel already exists.


回答1:


There's only one way to simulate this.

You need to create your own class, with a private array.

The most similar implementation of an array is an indexer:

  • Using indexers
  • Indexers (C# programming guide)
  • 10.8 Indexers (old)
  • C# 6.0 draft Indexers

The '10.8' link shows the simulation of a bidimensional array.

If you implement the indexer only with a getter, the user can only read the elements, but not write them. However, if each element is an object (reference type) you can't prevent the modification of the accessed objects properties.

However, there are several ways of simulating "read-only" objects:

  • Create a wrapper class that exposes the properties of each element in the array as read only properties, so that they cannot be modified
  • Using primitive value types (like int)
  • Defeating the changes by returning a copy of the element in the private array instead of the original element in the private array, so that, the changes made to the object don't affect the original object in the array.

In other languages like C++ there are references and pointers to constant values, but this doesn't exist in C#.




回答2:


Unfortunately there is no any built-in implementation to handle a case you ask for. But a simple implementation on your own, shouldn't be something difficult.

The only think, I hope you aware of it, that you will do is a readonly collection, but not elements inside that collection.

Hope this helps.



来源:https://stackoverflow.com/questions/10218084/read-only-two-dimensional-array-in-c-sharp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!