在 CharList 类中,我有一个私有列表 (List<List<NewChar>>) 和几个索引器:
private List<List<NewChar>> _charList;
// ...
public NewChar this[Int32 inner, Int32 outer]
{
get
{
if (inner < 0 || inner >= _charList.Count ||
outer < 0 || outer >= _charList[inner].Count)
throw new ArgumentException("NewCharList indexer[,]: Invalid index!");
return _charList[inner][outer];
}
}
public List<NewChar> this[Int32 index]
{
get
{
if (index < 0 || index > MaxCharListIndex)
throw new ArgumentException("NewCharList indexer[]: Invalid index");
List<NewChar> ret = new List<NewChar>(_charList[index].Count);
for (int i = 0; i < _charList[index].Count; i++)
ret.Add(_charList[index][i]);
return ret;
}
}
在测试代码(另一个类)中,如果我调用
charList[0] = null;
我收到编译器错误“无法将属性或索引器 xxx 分配给 - 它是只读的”,但如果我调用
charList[0][0] = new NewChar(22,22);
编译器将允许它,尽管值不会改变。为什么它会让我分配到第二个?我一辈子都想不通,这让我发疯!(即使它不会改变值)