先决条件:C#中的索引器多维索引器几乎类似于多维数组。为了有效地基于内容检索数据, 使用了多维索引器。要创建多维索引器, 你必须在索引器声明的参数列表中至少传递两个参数。要访问多维索引器的单个元素, 请使用整数下标。每个下标都为一个维度建立索引, 例如第一个索引为行维度, 第二个索引为列维度, 依此类推。
范例1:使用获取和设置访问器
// C# program to illustrate the
// Multidimensional Indexers
using System;
class GFG {// reference to underlying 2D array
int [, ] data = http://www.srcmini.com/new int [5, 5];
// declaring Multidimensional Indexer
public int this [ int index1, int index2]
{
// get accessor
get
{// it returns the values which
// read the indexes
return data[index1, index2];
}// set accessor
set
{// write the values in'data'
// using value keyword
data[index1, index2] = value;
}
}
}// Driver Class
class Geeks {// Main Method
public static void Main(String []args)
{// creating the instance of
// Class GFG as "index"
GFG index = new GFG();
// assign the values accordingly to
// the indexes of the array
// 1st row
index[0, 0] = 1;
index[0, 1] = 2;
index[0, 2] = 3;
// 2nd row
index[1, 0] = 4;
index[1, 1] = 5;
index[1, 2] = 6;
// 3rd row
index[2, 0] = 7;
index[2, 1] = 8;
index[2, 2] = 9;
// displaying the values
Console.WriteLine( "{0}\t{1}\t{2}\n{3}\t{4}\t{5}\n{6}\t{7}\t{8}" , index[0, 0], index[0, 1], index[0, 2], index[1, 0], index[1, 1], index[1, 2], index[2, 0], index[2, 1], index[2, 2]);
}
}
输出如下:
123
456
789
范例2:不使用” 设置” 访问器, 即仅使用只读属性
// C# program to illustrate the Multidimesional
// Indexer without using set accessor
using System;
class GFG {// default constructor
public GFG() {} // Multidimesional Indexer
public int this [ int i1, int i2]
{// get accessor
get
{// read only properties
return (i1 + i2);
}// No set accessor used
}// Main Method
public static void Main(String []args)
{// creating object of class
// "GFG" as "index"
GFG index = new GFG();
// displaying the values
for ( int i = 0;
i <
= 2;
i++) {for ( int j = 1;
j <
= 3;
j++)
{
Console.Write(index[i, j] + "\t" );
}Console.WriteLine();
}
}
}
【C#如何使用多维索引器(代码实例)】输出如下:
123
234
345
推荐阅读
- Python如何使用Django实现天气应用()
- 迷宫中的老鼠问题(使用回溯算法解决)
- 打印字符串中每个单词的第一个和最后一个字符
- 使用最少的给定操作数将一个字符串转换为另一个字符串
- C++编程语言快速入门简介
- 字符串的字母数字缩写
- CSS如何实现元素对齐()
- 生产现场车间数字化可视化管理系统软件
- LVS+Keepalived 高可用群集(DR模式)