索引跟數組的比較
• 索引和數組的比較
索引可以使用非整型參數
索引可以被重載
索引可以是私有的
索引不能有ref/out 型參數
struct Matrix www.2cto.com
{
...
public double this [int row, int col]
{
get { ... }
set { ... }
}
public Row this [int row]
{
get { ... }
set { ... }
}
...
}
作者:ershouyage